ETH Price: $2,950.14 (-6.56%)
Gas: 8 Gwei

Token

Blockchain Art Exchange (BAE)
 

Overview

Max Total Supply

2,136 BAE

Holders

500

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

0x2b933c1d299925d92f12d07c9a46a943272b51af
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:
BAE

Compiler Version
v0.5.12+commit.7709ece9

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2020-11-24
*/

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

pragma solidity ^0.5.0;

/**
 * @title Ownable
 * @dev The Ownable contract has an owner address, and provides basic authorization control
 * functions, this simplifies the implementation of "user permissions".
 */
contract Ownable {
    address private _owner;

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

    /**
     * @dev The Ownable constructor sets the original `owner` of the contract to the sender
     * account.
     */
    constructor () internal {
        _owner = msg.sender;
        emit OwnershipTransferred(address(0), _owner);
    }

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(isOwner());
        _;
    }

    /**
     * @return true if `msg.sender` is the owner of the contract.
     */
    function isOwner() public view returns (bool) {
        return msg.sender == _owner;
    }

    /**
     * @dev Allows the current owner to relinquish control of the contract.
     * @notice Renouncing to ownership will leave the contract without an owner.
     * It will not be possible to call the functions with the `onlyOwner`
     * modifier anymore.
     */
    function renounceOwnership() public onlyOwner {
        emit OwnershipTransferred(_owner, address(0));
        _owner = address(0);
    }

    /**
     * @dev Allows the current owner to transfer control of the contract to a newOwner.
     * @param newOwner The address to transfer ownership to.
     */
    function transferOwnership(address newOwner) public onlyOwner {
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers control of the contract to a newOwner.
     * @param newOwner The address to transfer ownership to.
     */
    function _transferOwnership(address newOwner) internal {
        require(newOwner != address(0));
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}

// File: contracts\multi-token-standard\interfaces\IERC165.sol

pragma solidity ^0.5.12;


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

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

// File: contracts\multi-token-standard\utils\SafeMath.sol

pragma solidity ^0.5.12;


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

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

    uint256 c = a * b;
    require(c / a == b, "SafeMath#mul: OVERFLOW");

    return c;
  }

  /**
   * @dev Integer division of two unsigned integers truncating the quotient, reverts on division by zero.
   */
  function div(uint256 a, uint256 b) internal pure returns (uint256) {
    // Solidity only automatically asserts when dividing by 0
    require(b > 0, "SafeMath#div: 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 Subtracts two unsigned integers, reverts on overflow (i.e. if subtrahend is greater than minuend).
   */
  function sub(uint256 a, uint256 b) internal pure returns (uint256) {
    require(b <= a, "SafeMath#sub: UNDERFLOW");
    uint256 c = a - b;

    return c;
  }

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

    return c;
  }

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

}

// File: contracts\multi-token-standard\interfaces\IERC1155TokenReceiver.sol

pragma solidity ^0.5.12;

/**
 * @dev ERC-1155 interface for accepting safe transfers.
 */
interface IERC1155TokenReceiver {

  /**
   * @notice Handle the receipt of a single ERC1155 token type
   * @dev An ERC1155-compliant smart contract MUST call this function on the token recipient contract, at the end of a `safeTransferFrom` after the balance has been updated
   * This function MAY throw to revert and reject the transfer
   * Return of other amount than the magic value MUST result in the transaction being reverted
   * Note: The token contract address is always the message sender
   * @param _operator  The address which called the `safeTransferFrom` function
   * @param _from      The address which previously owned the token
   * @param _id        The id of the token being transferred
   * @param _amount    The amount of tokens being transferred
   * @param _data      Additional data with no specified format
   * @return           `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))`
   */
  function onERC1155Received(address _operator, address _from, uint256 _id, uint256 _amount, bytes calldata _data) external returns(bytes4);

  /**
   * @notice Handle the receipt of multiple ERC1155 token types
   * @dev An ERC1155-compliant smart contract MUST call this function on the token recipient contract, at the end of a `safeBatchTransferFrom` after the balances have been updated
   * This function MAY throw to revert and reject the transfer
   * Return of other amount than the magic value WILL result in the transaction being reverted
   * Note: The token contract address is always the message sender
   * @param _operator  The address which called the `safeBatchTransferFrom` function
   * @param _from      The address which previously owned the token
   * @param _ids       An array containing ids of each token being transferred
   * @param _amounts   An array containing amounts of each token being transferred
   * @param _data      Additional data with no specified format
   * @return           `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))`
   */
  function onERC1155BatchReceived(address _operator, address _from, uint256[] calldata _ids, uint256[] calldata _amounts, bytes calldata _data) external returns(bytes4);

  /**
   * @notice Indicates whether a contract implements the `ERC1155TokenReceiver` functions and so can accept ERC1155 token types.
   * @param  interfaceID The ERC-165 interface ID that is queried for support.s
   * @dev This function MUST return true if it implements the ERC1155TokenReceiver interface and ERC-165 interface.
   *      This function MUST NOT consume more than 5,000 gas.
   * @return Wheter ERC-165 or ERC1155TokenReceiver interfaces are supported.
   */
  function supportsInterface(bytes4 interfaceID) external view returns (bool);

}

// File: contracts\multi-token-standard\interfaces\IERC1155.sol

pragma solidity ^0.5.12;


interface IERC1155 {
  // Events

  /**
   * @dev Either TransferSingle or TransferBatch MUST emit when tokens are transferred, including zero amount transfers as well as minting or burning
   *   Operator MUST be msg.sender
   *   When minting/creating tokens, the `_from` field MUST be set to `0x0`
   *   When burning/destroying tokens, the `_to` field MUST be set to `0x0`
   *   The total amount transferred from address 0x0 minus the total amount transferred to 0x0 may be used by clients and exchanges to be added to the "circulating supply" for a given token ID
   *   To broadcast the existence of a token ID with no initial balance, the contract SHOULD emit the TransferSingle event from `0x0` to `0x0`, with the token 
creator as `_operator`, and a `_amount` of 0
   */
  event TransferSingle(address indexed _operator, address indexed _from, address indexed _to, uint256 _id, uint256 _amount);

  /**
   * @dev Either TransferSingle or TransferBatch MUST emit when tokens are transferred, including zero amount transfers as well as minting or burning
   *   Operator MUST be msg.sender
   *   When minting/creating tokens, the `_from` field MUST be set to `0x0`
   *   When burning/destroying tokens, the `_to` field MUST be set to `0x0`
   *   The total amount transferred from address 0x0 minus the total amount transferred to 0x0 may be used by clients and exchanges to be added to the "circulating supply" for a given token ID
   *   To broadcast the existence of multiple token IDs with no initial balance, this SHOULD emit the TransferBatch event from `0x0` to `0x0`, with the token creator as `_operator`, and a `_amount` of 0
   */
  event TransferBatch(address indexed _operator, address indexed _from, address indexed _to, uint256[] _ids, uint256[] _amounts);

  /**
   * @dev MUST emit when an approval is updated
   */
  event ApprovalForAll(address indexed _owner, address indexed _operator, bool _approved);

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

  /**
   * @notice Transfers amount of an _id from the _from address to the _to address specified
   * @dev MUST emit TransferSingle event on success
   * Caller must be approved to manage the _from account's tokens (see isApprovedForAll)
   * MUST throw if `_to` is the zero address
   * MUST throw if balance of sender for token `_id` is lower than the `_amount` sent
   * MUST throw on any other error
   * When transfer is complete, this function MUST check if `_to` is a smart contract (code size > 0). If so, it MUST call `onERC1155Received` on `_to` and revert if the return amount is not `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))`
   * @param _from    Source address
   * @param _to      Target address
   * @param _id      ID of the token type
   * @param _amount  Transfered amount
   * @param _data    Additional data with no specified format, sent in call to `_to`
   */
  function safeTransferFrom(address _from, address _to, uint256 _id, uint256 _amount, bytes calldata _data) external;

  /**
   * @notice Send multiple types of Tokens from the _from address to the _to address (with safety call)
   * @dev MUST emit TransferBatch event on success
   * Caller must be approved to manage the _from account's tokens (see isApprovedForAll)
   * MUST throw if `_to` is the zero address
   * MUST throw if length of `_ids` is not the same as length of `_amounts`
   * MUST throw if any of the balance of sender for token `_ids` is lower than the respective `_amounts` sent
   * MUST throw on any other error
   * When transfer is complete, this function MUST check if `_to` is a smart contract (code size > 0). If so, it MUST call `onERC1155BatchReceived` on `_to` and revert if the return amount is not `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))`
   * Transfers and events MUST occur in the array order they were submitted (_ids[0] before _ids[1], etc)
   * @param _from     Source addresses
   * @param _to       Target addresses
   * @param _ids      IDs of each token type
   * @param _amounts  Transfer amounts per token type
   * @param _data     Additional data with no specified format, sent in call to `_to`
  */
  function safeBatchTransferFrom(address _from, address _to, uint256[] calldata _ids, uint256[] calldata _amounts, bytes calldata _data) external;

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

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

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

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

}

// File: contracts\multi-token-standard\utils\Address.sol

/**
 * Copyright 2018 ZeroEx Intl.
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *   http://www.apache.org/licenses/LICENSE-2.0
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

pragma solidity ^0.5.12;


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

  /**
   * Returns whether the target address is a contract
   * @dev This function will return false if invoked during the constructor of a contract,
   * as the code is not actually created until after the constructor finishes.
   * @param account address of the account to check
   * @return whether the target address is a contract
   */
  function isContract(address account) internal view returns (bool) {
    bytes32 codehash;
    bytes32 accountHash = 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470;

    // XXX Currently there is no better way to check if there is a contract in an address
    // than to check the size of the code at that address.
    // See https://ethereum.stackexchange.com/a/14016/36603
    // for more details about how this works.
    // TODO Check this again before the Serenity release, because all addresses will be
    // contracts then.
    assembly { codehash := extcodehash(account) }
    return (codehash != 0x0 && codehash != accountHash);
  }

}

// File: contracts\multi-token-standard\tokens\ERC1155\ERC1155.sol

pragma solidity ^0.5.12;







/**
 * @dev Implementation of Multi-Token Standard contract
 */
contract ERC1155 is IERC165 {
  using SafeMath for uint256;
  using Address for address;


  /***********************************|
  |        Variables and Events       |
  |__________________________________*/

  // onReceive function signatures
  bytes4 constant internal ERC1155_RECEIVED_VALUE = 0xf23a6e61;
  bytes4 constant internal ERC1155_BATCH_RECEIVED_VALUE = 0xbc197c81;

  // Objects balances
  mapping (address => mapping(uint256 => uint256)) internal balances;

  // Operator Functions
  mapping (address => mapping(address => bool)) internal operators;

  // Events
  event TransferSingle(address indexed _operator, address indexed _from, address indexed _to, uint256 _id, uint256 _amount);
  event TransferBatch(address indexed _operator, address indexed _from, address indexed _to, uint256[] _ids, uint256[] _amounts);
  event ApprovalForAll(address indexed _owner, address indexed _operator, bool _approved);
  event URI(string _uri, uint256 indexed _id);


  /***********************************|
  |     Public Transfer Functions     |
  |__________________________________*/

  /**
   * @notice Transfers amount amount of an _id from the _from address to the _to address specified
   * @param _from    Source address
   * @param _to      Target address
   * @param _id      ID of the token type
   * @param _amount  Transfered amount
   * @param _data    Additional data with no specified format, sent in call to `_to`
   */
  function safeTransferFrom(address _from, address _to, uint256 _id, uint256 _amount, bytes memory _data)
    public
  {
    require((msg.sender == _from) || isApprovedForAll(_from, msg.sender), "ERC1155#safeTransferFrom: INVALID_OPERATOR");
    require(_to != address(0),"ERC1155#safeTransferFrom: INVALID_RECIPIENT");
    // require(_amount >= balances[_from][_id]) is not necessary since checked with safemath operations

    _safeTransferFrom(_from, _to, _id, _amount);
    _callonERC1155Received(_from, _to, _id, _amount, _data);
  }

  /**
   * @notice Send multiple types of Tokens from the _from address to the _to address (with safety call)
   * @param _from     Source addresses
   * @param _to       Target addresses
   * @param _ids      IDs of each token type
   * @param _amounts  Transfer amounts per token type
   * @param _data     Additional data with no specified format, sent in call to `_to`
   */
  function safeBatchTransferFrom(address _from, address _to, uint256[] memory _ids, uint256[] memory _amounts, bytes memory _data)
    public
  {
    // Requirements
    require((msg.sender == _from) || isApprovedForAll(_from, msg.sender), "ERC1155#safeBatchTransferFrom: INVALID_OPERATOR");
    require(_to != address(0), "ERC1155#safeBatchTransferFrom: INVALID_RECIPIENT");

    _safeBatchTransferFrom(_from, _to, _ids, _amounts);
    _callonERC1155BatchReceived(_from, _to, _ids, _amounts, _data);
  }


  /***********************************|
  |    Internal Transfer Functions    |
  |__________________________________*/

  /**
   * @notice Transfers amount amount of an _id from the _from address to the _to address specified
   * @param _from    Source address
   * @param _to      Target address
   * @param _id      ID of the token type
   * @param _amount  Transfered amount
   */
  function _safeTransferFrom(address _from, address _to, uint256 _id, uint256 _amount)
    internal
  {
    // Update balances
    balances[_from][_id] = balances[_from][_id].sub(_amount); // Subtract amount
    balances[_to][_id] = balances[_to][_id].add(_amount);     // Add amount

    // Emit event
    emit TransferSingle(msg.sender, _from, _to, _id, _amount);
  }

  /**
   * @notice Verifies if receiver is contract and if so, calls (_to).onERC1155Received(...)
   */
  function _callonERC1155Received(address _from, address _to, uint256 _id, uint256 _amount, bytes memory _data)
    internal
  {
    // Check if recipient is contract
    if (_to.isContract() && _to != address(this)) {
      bytes4 retval = IERC1155TokenReceiver(_to).onERC1155Received(msg.sender, _from, _id, _amount, _data);
      require(retval == ERC1155_RECEIVED_VALUE, "ERC1155#_callonERC1155Received: INVALID_ON_RECEIVE_MESSAGE");
    }
  }

  /**
   * @notice Send multiple types of Tokens from the _from address to the _to address (with safety call)
   * @param _from     Source addresses
   * @param _to       Target addresses
   * @param _ids      IDs of each token type
   * @param _amounts  Transfer amounts per token type
   */
  function _safeBatchTransferFrom(address _from, address _to, uint256[] memory _ids, uint256[] memory _amounts)
    internal
  {
    require(_ids.length == _amounts.length, "ERC1155#_safeBatchTransferFrom: INVALID_ARRAYS_LENGTH");

    // Number of transfer to execute
    uint256 nTransfer = _ids.length;

    // Executing all transfers
    for (uint256 i = 0; i < nTransfer; i++) {
      // Update storage balance of previous bin
      balances[_from][_ids[i]] = balances[_from][_ids[i]].sub(_amounts[i]);
      balances[_to][_ids[i]] = balances[_to][_ids[i]].add(_amounts[i]);
    }

    // Emit event
    emit TransferBatch(msg.sender, _from, _to, _ids, _amounts);
  }

  /**
   * @notice Verifies if receiver is contract and if so, calls (_to).onERC1155BatchReceived(...)
   */
  function _callonERC1155BatchReceived(address _from, address _to, uint256[] memory _ids, uint256[] memory _amounts, bytes memory _data)
    internal
  {
    // Pass data if recipient is contract
    if (_to.isContract() && _to != address(this)) {
      bytes4 retval = IERC1155TokenReceiver(_to).onERC1155BatchReceived(msg.sender, _from, _ids, _amounts, _data);
      require(retval == ERC1155_BATCH_RECEIVED_VALUE, "ERC1155#_callonERC1155BatchReceived: INVALID_ON_RECEIVE_MESSAGE");
    }
  }


  /***********************************|
  |         Operator Functions        |
  |__________________________________*/

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

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


  /***********************************|
  |         Balance Functions         |
  |__________________________________*/

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

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

    // Variables
    uint256[] memory batchBalances = new uint256[](_owners.length);

    // Iterate over each owner and token ID
    for (uint256 i = 0; i < _owners.length; i++) {
      batchBalances[i] = balances[_owners[i]][_ids[i]];
    }

    return batchBalances;
  }


  /***********************************|
  |          ERC165 Functions         |
  |__________________________________*/

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

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

  /**
   * @notice Query if a contract implements an interface
   * @param _interfaceID  The interface identifier, as specified in ERC-165
   * @return `true` if the contract implements `_interfaceID` and
   */
  function supportsInterface(bytes4 _interfaceID) external view returns (bool) {
    if (_interfaceID == INTERFACE_SIGNATURE_ERC165 ||
        _interfaceID == INTERFACE_SIGNATURE_ERC1155) {
      return true;
    }
    return false;
  }

}

// File: contracts\multi-token-standard\tokens\ERC1155\ERC1155Metadata.sol

pragma solidity ^0.5.11;



/**
 * @notice Contract that handles metadata related methods.
 * @dev Methods assume a deterministic generation of URI based on token IDs.
 *      Methods also assume that URI uses hex representation of token IDs.
 */
contract ERC1155Metadata {

  // URI's default URI prefix
  string internal baseMetadataURI;
  event URI(string _uri, uint256 indexed _id);


  /***********************************|
  |     Metadata Public Function s    |
  |__________________________________*/

  /**
   * @notice A distinct Uniform Resource Identifier (URI) for a given token.
   * @dev URIs are defined in RFC 3986.
   *      URIs are assumed to be deterministically generated based on token ID
   *      Token IDs are assumed to be represented in their hex format in URIs
   * @return URI string
   */
  function uri(uint256 _id) public view returns (string memory) {
    return string(abi.encodePacked(baseMetadataURI, _uint2str(_id), ".json"));
  }


  /***********************************|
  |    Metadata Internal Functions    |
  |__________________________________*/

  /**
   * @notice Will emit default URI log event for corresponding token _id
   * @param _tokenIDs Array of IDs of tokens to log default URI
   */
  function _logURIs(uint256[] memory _tokenIDs) internal {
    string memory baseURL = baseMetadataURI;
    string memory tokenURI;

    for (uint256 i = 0; i < _tokenIDs.length; i++) {
      tokenURI = string(abi.encodePacked(baseURL, _uint2str(_tokenIDs[i]), ".json"));
      emit URI(tokenURI, _tokenIDs[i]);
    }
  }

  /**
   * @notice Will emit a specific URI log event for corresponding token
   * @param _tokenIDs IDs of the token corresponding to the _uris logged
   * @param _URIs    The URIs of the specified _tokenIDs
   */
  function _logURIs(uint256[] memory _tokenIDs, string[] memory _URIs) internal {
    require(_tokenIDs.length == _URIs.length, "ERC1155Metadata#_logURIs: INVALID_ARRAYS_LENGTH");
    for (uint256 i = 0; i < _tokenIDs.length; i++) {
      emit URI(_URIs[i], _tokenIDs[i]);
    }
  }

  /**
   * @notice Will update the base URL of token's URI
   * @param _newBaseMetadataURI New base URL of token's URI
   */
  function _setBaseMetadataURI(string memory _newBaseMetadataURI) internal {
    baseMetadataURI = _newBaseMetadataURI;
  }


  /***********************************|
  |    Utility Internal Functions     |
  |__________________________________*/

  /**
   * @notice Convert uint256 to string
   * @param _i Unsigned integer to convert to string
   */
  function _uint2str(uint256 _i) internal pure returns (string memory _uintAsString) {
    if (_i == 0) {
      return "0";
    }

    uint256 j = _i;
    uint256 ii = _i;
    uint256 len;

    // Get number of bytes
    while (j != 0) {
      len++;
      j /= 10;
    }

    bytes memory bstr = new bytes(len);
    uint256 k = len - 1;

    // Get each individual ASCII
    while (ii != 0) {
      bstr[k--] = byte(uint8(48 + ii % 10));
      ii /= 10;
    }

    // Convert to string
    return string(bstr);
  }

}

// File: contracts\multi-token-standard\tokens\ERC1155\ERC1155MintBurn.sol

pragma solidity ^0.5.12;



/**
 * @dev Multi-Fungible Tokens with minting and burning methods. These methods assume
 *      a parent contract to be executed as they are `internal` functions
 */
contract ERC1155MintBurn is ERC1155 {


  /****************************************|
  |            Minting Functions           |
  |_______________________________________*/

  /**
   * @notice Mint _amount of tokens of a given id
   * @param _to      The address to mint tokens to
   * @param _id      Token id to mint
   * @param _amount  The amount to be minted
   * @param _data    Data to pass if receiver is contract
   */
  function _mint(address _to, uint256 _id, uint256 _amount, bytes memory _data)
    internal
  {
    // Add _amount
    balances[_to][_id] = balances[_to][_id].add(_amount);

    // Emit event
    emit TransferSingle(msg.sender, address(0x0), _to, _id, _amount);

    // Calling onReceive method if recipient is contract
    _callonERC1155Received(address(0x0), _to, _id, _amount, _data);
  }

  /**
   * @notice Mint tokens for each ids in _ids
   * @param _to       The address to mint tokens to
   * @param _ids      Array of ids to mint
   * @param _amounts  Array of amount of tokens to mint per id
   * @param _data    Data to pass if receiver is contract
   */
  function _batchMint(address _to, uint256[] memory _ids, uint256[] memory _amounts, bytes memory _data)
    internal
  {
    require(_ids.length == _amounts.length, "ERC1155MintBurn#batchMint: INVALID_ARRAYS_LENGTH");

    // Number of mints to execute
    uint256 nMint = _ids.length;

     // Executing all minting
    for (uint256 i = 0; i < nMint; i++) {
      // Update storage balance
      balances[_to][_ids[i]] = balances[_to][_ids[i]].add(_amounts[i]);
    }

    // Emit batch mint event
    emit TransferBatch(msg.sender, address(0x0), _to, _ids, _amounts);

    // Calling onReceive method if recipient is contract
    _callonERC1155BatchReceived(address(0x0), _to, _ids, _amounts, _data);
  }


  /****************************************|
  |            Burning Functions           |
  |_______________________________________*/

  /**
   * @notice Burn _amount of tokens of a given token id
   * @param _from    The address to burn tokens from
   * @param _id      Token id to burn
   * @param _amount  The amount to be burned
   */
  function _burn(address _from, uint256 _id, uint256 _amount)
    internal
  {
    //Substract _amount
    balances[_from][_id] = balances[_from][_id].sub(_amount);

    // Emit event
    emit TransferSingle(msg.sender, _from, address(0x0), _id, _amount);
  }

  /**
   * @notice Burn tokens of given token id for each (_ids[i], _amounts[i]) pair
   * @param _from     The address to burn tokens from
   * @param _ids      Array of token ids to burn
   * @param _amounts  Array of the amount to be burned
   */
  function _batchBurn(address _from, uint256[] memory _ids, uint256[] memory _amounts)
    internal
  {
    require(_ids.length == _amounts.length, "ERC1155MintBurn#batchBurn: INVALID_ARRAYS_LENGTH");

    // Number of mints to execute
    uint256 nBurn = _ids.length;

     // Executing all minting
    for (uint256 i = 0; i < nBurn; i++) {
      // Update storage balance
      balances[_from][_ids[i]] = balances[_from][_ids[i]].sub(_amounts[i]);
    }

    // Emit batch mint event
    emit TransferBatch(msg.sender, _from, address(0x0), _ids, _amounts);
  }

}

// File: contracts\Strings.sol

pragma solidity ^0.5.11;

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

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

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

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

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

// File: contracts\ERC1155Tradable.sol

pragma solidity ^0.5.12;






contract OwnableDelegateProxy { }

contract ProxyRegistry {
  mapping(address => OwnableDelegateProxy) public proxies;
}

interface ERC721 {
    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);
    function safeTransferFrom(address _from, address _to, uint256 _tokenId) external payable;
    function transferFrom(address _from, address _to, uint256 _tokenId) external payable;
    function approve(address _approved, uint256 _tokenId) external payable;
    function setApprovalForAll(address _operator, bool _approved) external;
    function getApproved(uint256 _tokenId) external view returns (address);
    function isApprovedForAll(address _owner, address _operator) external view returns (bool);
}

/**
 * @title ERC1155Tradable
 * ERC1155Tradable - ERC1155 contract that whitelists an operator address, has create and mint functionality, and supports useful standards from OpenZeppelin, 
  like _exists(), name(), symbol(), and totalSupply()
 */
contract ERC1155Tradable is ERC1155, ERC1155MintBurn, ERC1155Metadata, Ownable {
  using Strings for string;

  event ArtCreated(uint token, uint amount, string name, address artist);

  uint256 printFee = 4000000000000000;
  address admin;
  address treasurer;
  bool lock = false;
  address oldContract = 0x677D8FE828Fd7143FF3CeE5883b7fC81e7c2de60;
  address proxyRegistryAddress;
  uint256 private _currentTokenID = 0;
  mapping (uint256 => address) public creators;
  mapping (uint256 => uint256) public tokenSupply;
  // Contract name
  string public name;
  // Contract symbol
  string public symbol;

  /**
   * @dev Require msg.sender to be the creator of the token id
   */
  modifier creatorOnly(uint256 _id) {
    require(creators[_id] == msg.sender, "ERC1155Tradable#creatorOnly: ONLY_CREATOR_ALLOWED");
    _;
  }

  /**
   * @dev Require msg.sender to own more than 0 of the token id
   */
  modifier ownersOnly(uint256 _id, uint256 _amount) {
    require(balances[msg.sender][_id] >= _amount, "ERC1155Tradable#ownersOnly: ONLY_OWNERS_ALLOWED");
    _;
  }

  /**
   * @dev Require msg.sender to be admin
   */
  modifier onlyAdmin() {
    require(msg.sender == admin, "ERC1155Tradable#ownersOnly: ONLY_ADMIN_ALLOWED");
    _;
  }

  constructor(
    string memory _name,
    string memory _symbol,
    address _proxyRegistryAddress
  ) public {
    name = _name;
    symbol = _symbol;
    admin = 0x486082148bc8Dc9DEe8c9E53649ea148291FF292;
    treasurer = 0xEbBFE1A7ffd8C0065eF1a87F018BaB8cf9aF1207;
    proxyRegistryAddress = _proxyRegistryAddress;
  }

  function uri(
    uint256 _id
  ) public view returns (string memory) {
    require(_exists(_id), "ERC721Tradable#uri: NONEXISTENT_TOKEN");
    return Strings.strConcat(
      baseMetadataURI,
      Strings.uint2str(_id)
    );
  }

  /**
    * @dev Returns the total quantity for a token ID
    * @param _id uint256 ID of the token to query
    * @return amount of token in existence
    */
  function totalSupply(
    uint256 _id
  ) public view returns (uint256) {
    return tokenSupply[_id];
  }

  /**
   * @dev Will update the base URL of token's URI
   * @param _newBaseMetadataURI New base URL of token's URI
   */
  function setBaseMetadataURI(
    string memory _newBaseMetadataURI
  ) public onlyAdmin {
    _setBaseMetadataURI(_newBaseMetadataURI);
  }

  /**
    * @dev Change the creator address for given tokens
    * @param _to   Address of the new creator
    * @param _ids  Array of Token IDs to change creator
    */
  function setCreator(
    address _to,
    uint256[] memory _ids
  ) public {
    require(_to != address(0), "ERC1155Tradable#setCreator: INVALID_ADDRESS.");
    for (uint256 i = 0; i < _ids.length; i++) {
      uint256 id = _ids[i];
      _setCreator(_to, id);
    }
  }

  /**
   * Override isApprovedForAll to whitelist user's OpenSea proxy accounts to enable gas-free listings.
   */
  function isApprovedForAll(
    address _owner,
    address _operator
  ) public view returns (bool isOperator) {
    // Whitelist OpenSea proxy contract for easy trading.
    ProxyRegistry proxyRegistry = ProxyRegistry(proxyRegistryAddress);
    if (address(proxyRegistry.proxies(_owner)) == _operator) {
      return true;
    }

    if (address(this) == _operator) {
      return true;
    }

    return ERC1155.isApprovedForAll(_owner, _operator);
  }

  /**
    * @dev Change the creator address for given token
    * @param _to   Address of the new creator
    * @param _id  Token IDs to change creator of
    */
  function _setCreator(address _to, uint256 _id) internal creatorOnly(_id)
  {
      creators[_id] = _to;
  }

  /**
    * @dev Returns whether the specified token exists by checking to see if it has a creator
    * @param _id uint256 ID of the token to query the existence of
    * @return bool whether the token exists
    */
  function _exists(
    uint256 _id
  ) internal view returns (bool) {
    return creators[_id] != address(0);
  }

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

  /**
    * @dev increments the value of _currentTokenID
    */
  function _incrementTokenTypeId() private  {
    _currentTokenID++;
  }

  /**
    * @dev Creates a new token type and assigns _initialSupply to an address
    * NOTE: remove onlyOwner if you want third parties to create new tokens on your contract (which may change your IDs)
    * @param _initialSupply amount to supply the first owner
    * @param _name of artwork
    * @param _uri Optional URI for this token type
    * @param _data Data to pass if receiver is contract
    * @return The newly created token ID
    */
  function create(
    uint256 _initialSupply,
    string calldata _name,
    string calldata _uri,
    bytes calldata _data
  ) external payable returns (uint256) {
    require(_initialSupply > 0, "Cannot print 0 pieces!");
    require(msg.value >= printFee * _initialSupply, "Insufficient Balance");

    treasurer.call.value(msg.value)("");
    uint256 _id = _getNextTokenID();
    _incrementTokenTypeId();
    creators[_id] = msg.sender;

    if (bytes(_uri).length > 0) {
      emit URI(_uri, _id);
    }

    _mint(msg.sender, _id, _initialSupply, _data);

    tokenSupply[_id] = _initialSupply;
    emit ArtCreated(_id, _initialSupply, _name, msg.sender);
    return _id;
  }

  function toggleImports() public onlyAdmin{
    lock = !lock;
  }

  function importToken(uint256 _tokenIndex, string calldata _uri, bytes calldata _data) external{
    require(lock == false, "Imports Locked");
    ERC721(oldContract).transferFrom(msg.sender, address(0), _tokenIndex);
    uint256 _id = _getNextTokenID();
    _incrementTokenTypeId();
    creators[_id] = msg.sender;

    if (bytes(_uri).length > 0) {
      emit URI(_uri, _id);
    }
    _mint(msg.sender, _id, 1, _data);
    tokenSupply[_id] = 1;
    emit ArtCreated(_id, 1, "Imported Art", msg.sender);
  }

}

// File: contracts\BAE.sol

// SPDX-License-Identifier: MIT

pragma solidity ^0.5.12;

contract BAE is ERC1155Tradable {
    event AuctionStart(address creator, uint256 token, uint256 startingBid, uint256 auctionIndex, uint256 expiry);
    event AuctionEnd(uint256 token, uint256 finalBid, address owner, address newOwner, uint256 auctionIndex);
    event AuctionReset(uint256 auctionIndex, uint256 newExpiry, uint256 newPrice);
    event Bid(address bidder, uint256 token, uint256 auctionIndex, uint256 amount);

    uint256 public auctionCount;

    uint256 public auctionFee = 5; //Out of 1000 for 100%

    struct auctionData{
      address owner;
      address lastBidder;
      uint256 bid;
      uint256 expiry;
      uint256 token;
    }

    mapping(uint256 => auctionData) public auctionList;

    constructor(address _proxyRegistryAddress)
    ERC1155Tradable(
      "Blockchain Art Exchange",
      "BAE",
      _proxyRegistryAddress
    ) public {
      _setBaseMetadataURI("https://api.mybae.io/tokens/");
    }

    function changePrintFee(uint256 _newPrice) public onlyAdmin{
      printFee = _newPrice;
    }

    function setAuctionFee(uint256 _newFee) public onlyAdmin{
      require(_newFee < 1000, "Fee Too High!");
      auctionFee = _newFee;
    }

    function createAuction(uint256 _price, uint256 _expiry, uint256 _token, uint256 _amount) public ownersOnly(_token, _amount){
      require(block.timestamp < _expiry, "Auction Date Passed");
      require(block.timestamp + (86400 * 14) > _expiry, "Auction Date Too Far");
      require(_price > 0, "Auction Price Cannot Be 0");
      for(uint x = 0; x < _amount; x++){
        safeTransferFrom(msg.sender, address(this), _token, 1, "");
        auctionList[auctionCount] = auctionData(msg.sender, address(0), _price, _expiry, _token);
        emit AuctionStart(msg.sender, _token, _price, auctionCount, _expiry);
        auctionCount++;
      }
    }

    function bid(uint256 _index) public payable {
      require(auctionList[_index].expiry > block.timestamp);
      require(auctionList[_index].bid + 10000000000000000 <= msg.value);
      require(msg.sender != auctionList[_index].owner);
      require(msg.sender != auctionList[_index].lastBidder);
      if(auctionList[_index].lastBidder != address(0)){
        auctionList[_index].lastBidder.call.value(auctionList[_index].bid)("");
      }
      auctionList[_index].bid = msg.value;
      auctionList[_index].lastBidder = msg.sender;
      emit Bid(msg.sender, auctionList[_index].token, _index, msg.value);
    }

    function buy(uint256 _index) public payable {
      require(auctionList[_index].expiry < block.timestamp);
      require(auctionList[_index].bid <= msg.value);
      require(address(0) == auctionList[_index].lastBidder);
      require(auctionList[_index].bid > 0);
      this.safeTransferFrom(address(this), msg.sender, auctionList[_index].token, 1, "");
      uint256 fee = auctionList[_index].bid * auctionFee / 1000;
      treasurer.call.value(fee)("");
      auctionList[_index].owner.call.value(auctionList[_index].bid.sub(fee))("");
      emit AuctionEnd(auctionList[_index].token, auctionList[_index].bid, auctionList[_index].owner, msg.sender, _index);

      auctionList[_index].lastBidder = msg.sender;
      auctionList[_index].bid = 0;
    }

    function resetAuction(uint256 _index, uint256 _expiry, uint256 _price) public{
      require(msg.sender == auctionList[_index].owner, "You Dont Own This Auction!");
      require(address(0) == auctionList[_index].lastBidder, "Someone Won This Auction!");
      require(auctionList[_index].expiry < block.timestamp, "Auction Is Still Running");
      require(_expiry > block.timestamp, "Auction Date Passed");
      auctionList[_index].expiry = _expiry;
      auctionList[_index].bid = _price;
      emit AuctionReset(_index, _expiry, _price);
    }

    function concludeAuction(uint256 _index) public{
      require(auctionList[_index].expiry < block.timestamp, "Auction Not Expired");
      require(auctionList[_index].bid != 0, "Auction Concluded");
      if(auctionList[_index].lastBidder != address(0)){
        this.safeTransferFrom(address(this), auctionList[_index].lastBidder, auctionList[_index].token, 1, "");
        uint256 fee = auctionList[_index].bid * auctionFee / 1000;
        treasurer.call.value(fee)("");
        auctionList[_index].owner.call.value(auctionList[_index].bid.sub(fee))("");
        emit AuctionEnd(auctionList[_index].token, auctionList[_index].bid, auctionList[_index].owner, auctionList[_index].lastBidder, _index);
      }
      else{
        this.safeTransferFrom(address(this), auctionList[_index].owner, auctionList[_index].token, 1, "");
        emit AuctionEnd(auctionList[_index].token, 0, auctionList[_index].owner, auctionList[_index].owner, _index);
      }
      auctionList[_index].lastBidder = address(0);
      auctionList[_index].bid = 0;
    }


}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_proxyRegistryAddress","type":"address"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"token","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":false,"internalType":"string","name":"name","type":"string"},{"indexed":false,"internalType":"address","name":"artist","type":"address"}],"name":"ArtCreated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"token","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"finalBid","type":"uint256"},{"indexed":false,"internalType":"address","name":"owner","type":"address"},{"indexed":false,"internalType":"address","name":"newOwner","type":"address"},{"indexed":false,"internalType":"uint256","name":"auctionIndex","type":"uint256"}],"name":"AuctionEnd","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"auctionIndex","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newExpiry","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"AuctionReset","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"creator","type":"address"},{"indexed":false,"internalType":"uint256","name":"token","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"startingBid","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"auctionIndex","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"expiry","type":"uint256"}],"name":"AuctionStart","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"bidder","type":"address"},{"indexed":false,"internalType":"uint256","name":"token","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"auctionIndex","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Bid","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":"_operator","type":"address"},{"indexed":true,"internalType":"address","name":"_from","type":"address"},{"indexed":true,"internalType":"address","name":"_to","type":"address"},{"indexed":false,"internalType":"uint256[]","name":"_ids","type":"uint256[]"},{"indexed":false,"internalType":"uint256[]","name":"_amounts","type":"uint256[]"}],"name":"TransferBatch","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_operator","type":"address"},{"indexed":true,"internalType":"address","name":"_from","type":"address"},{"indexed":true,"internalType":"address","name":"_to","type":"address"},{"indexed":false,"internalType":"uint256","name":"_id","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"TransferSingle","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"_uri","type":"string"},{"indexed":true,"internalType":"uint256","name":"_id","type":"uint256"}],"name":"URI","type":"event"},{"constant":true,"inputs":[],"name":"auctionCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"auctionFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"auctionList","outputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"lastBidder","type":"address"},{"internalType":"uint256","name":"bid","type":"uint256"},{"internalType":"uint256","name":"expiry","type":"uint256"},{"internalType":"uint256","name":"token","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"_owner","type":"address"},{"internalType":"uint256","name":"_id","type":"uint256"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address[]","name":"_owners","type":"address[]"},{"internalType":"uint256[]","name":"_ids","type":"uint256[]"}],"name":"balanceOfBatch","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"_index","type":"uint256"}],"name":"bid","outputs":[],"payable":true,"stateMutability":"payable","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"_index","type":"uint256"}],"name":"buy","outputs":[],"payable":true,"stateMutability":"payable","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"changePrintFee","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"_index","type":"uint256"}],"name":"concludeAuction","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"_initialSupply","type":"uint256"},{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_uri","type":"string"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"create","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":true,"stateMutability":"payable","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"},{"internalType":"uint256","name":"_expiry","type":"uint256"},{"internalType":"uint256","name":"_token","type":"uint256"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"createAuction","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"creators","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"_tokenIndex","type":"uint256"},{"internalType":"string","name":"_uri","type":"string"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"importToken","outputs":[],"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":"isOperator","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"isOwner","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"renounceOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"_index","type":"uint256"},{"internalType":"uint256","name":"_expiry","type":"uint256"},{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"resetAuction","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_from","type":"address"},{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256[]","name":"_ids","type":"uint256[]"},{"internalType":"uint256[]","name":"_amounts","type":"uint256[]"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeBatchTransferFrom","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_from","type":"address"},{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_id","type":"uint256"},{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_operator","type":"address"},{"internalType":"bool","name":"_approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"_newFee","type":"uint256"}],"name":"setAuctionFee","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"string","name":"_newBaseMetadataURI","type":"string"}],"name":"setBaseMetadataURI","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256[]","name":"_ids","type":"uint256[]"}],"name":"setCreator","outputs":[],"payable":false,"stateMutability":"nonpayable","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":true,"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"toggleImports","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"tokenSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"uint256","name":"_id","type":"uint256"}],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"uint256","name":"_id","type":"uint256"}],"name":"uri","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"}]

6080604052660e35fa931a00006004556000600660146101000a81548160ff02191690831515021790555073677d8fe828fd7143ff3cee5883b7fc81e7c2de60600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060006009556005600f553480156200009657600080fd5b5060405162005e5838038062005e5883398181016040526020811015620000bc57600080fd5b81019080805190602001909291905050506040518060400160405280601781526020017f426c6f636b636861696e204172742045786368616e67650000000000000000008152506040518060400160405280600381526020017f42414500000000000000000000000000000000000000000000000000000000008152508233600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a382600c90805190602001906200021092919062000381565b5081600d90805190602001906200022992919062000381565b5073486082148bc8dc9dee8c9e53649ea148291ff292600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073ebbfe1a7ffd8c0065ef1a87f018bab8cf9af1207600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050506200035e6040518060400160405280601c81526020017f68747470733a2f2f6170692e6d796261652e696f2f746f6b656e732f000000008152506200036560201b60201c565b5062000430565b80600290805190602001906200037d92919062000381565b5050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10620003c457805160ff1916838001178555620003f5565b82800160010185558215620003f5579182015b82811115620003f4578251825591602001919060010190620003d7565b5b50905062000404919062000408565b5090565b6200042d91905b80821115620004295760008160009055506001016200040f565b5090565b90565b615a1880620004406000396000f3fe6080604052600436106101e25760003560e01c80638da5cb5b11610102578063cd53d08e11610095578063f242432a11610064578063f242432a14611144578063f2fde38b14611260578063f4d9fecc146112b1578063f59e754c14611300576101e2565b8063cd53d08e14610f2d578063d2a6b51a14610fa8578063d96a094a1461108d578063e985e9c5146110bb576101e2565b8063a22cb465116100d1578063a22cb46514610e0b578063a8c5ba8114610e68578063b876130114610ea3578063bd85b03914610ede576101e2565b80638da5cb5b14610cde5780638f32d59b14610d3557806395d89b4114610d645780639751290514610df4576101e2565b806340ffae2e1161017a5780634e1273f4116101495780634e1273f41461098e578063669c008314610b3c578063715018a614610bff5780637e518ec814610c16576101e2565b806340ffae2e146106e1578063431f21da14610822578063454a2ab31461087b5780634cd365cb146108a9576101e2565b806314525b6b116101b657806314525b6b1461040c5780632693ebf2146104375780632ad71573146104865780632eb2c2d6146104b1576101e2565b8062fdd58e146101e757806301ffc9a71461025657806306fdde03146102c85780630e89341c14610358575b600080fd5b3480156101f357600080fd5b506102406004803603604081101561020a57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061133b565b6040518082815260200191505060405180910390f35b34801561026257600080fd5b506102ae6004803603602081101561027957600080fd5b8101908080357bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19169060200190929190505050611395565b604051808215151515815260200191505060405180910390f35b3480156102d457600080fd5b506102dd611446565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561031d578082015181840152602081019050610302565b50505050905090810190601f16801561034a5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561036457600080fd5b506103916004803603602081101561037b57600080fd5b81019080803590602001909291905050506114e4565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156103d15780820151818401526020810190506103b6565b50505050905090810190601f1680156103fe5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561041857600080fd5b506104216115f7565b6040518082815260200191505060405180910390f35b34801561044357600080fd5b506104706004803603602081101561045a57600080fd5b81019080803590602001909291905050506115fd565b6040518082815260200191505060405180910390f35b34801561049257600080fd5b5061049b611615565b6040518082815260200191505060405180910390f35b3480156104bd57600080fd5b506106df600480360360a08110156104d457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019064010000000081111561053157600080fd5b82018360208201111561054357600080fd5b8035906020019184602083028401116401000000008311171561056557600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f820116905080830192505050505050509192919290803590602001906401000000008111156105c557600080fd5b8201836020820111156105d757600080fd5b803590602001918460208302840111640100000000831117156105f957600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f8201169050808301925050505050505091929192908035906020019064010000000081111561065957600080fd5b82018360208201111561066b57600080fd5b8035906020019184600183028401116401000000008311171561068d57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f82011690508083019250505050505050919291929050505061161b565b005b61080c600480360360808110156106f757600080fd5b81019080803590602001909291908035906020019064010000000081111561071e57600080fd5b82018360208201111561073057600080fd5b8035906020019184600183028401116401000000008311171561075257600080fd5b90919293919293908035906020019064010000000081111561077357600080fd5b82018360208201111561078557600080fd5b803590602001918460018302840111640100000000831117156107a757600080fd5b9091929391929390803590602001906401000000008111156107c857600080fd5b8201836020820111156107da57600080fd5b803590602001918460018302840111640100000000831117156107fc57600080fd5b9091929391929390505050611756565b6040518082815260200191505060405180910390f35b34801561082e57600080fd5b506108796004803603608081101561084557600080fd5b8101908080359060200190929190803590602001909291908035906020019092919080359060200190929190505050611ac4565b005b6108a76004803603602081101561089157600080fd5b8101908080359060200190929190505050611ec3565b005b3480156108b557600080fd5b5061098c600480360360608110156108cc57600080fd5b8101908080359060200190929190803590602001906401000000008111156108f357600080fd5b82018360208201111561090557600080fd5b8035906020019184600183028401116401000000008311171561092757600080fd5b90919293919293908035906020019064010000000081111561094857600080fd5b82018360208201111561095a57600080fd5b8035906020019184600183028401116401000000008311171561097c57600080fd5b9091929391929390505050612210565b005b34801561099a57600080fd5b50610ae5600480360360408110156109b157600080fd5b81019080803590602001906401000000008111156109ce57600080fd5b8201836020820111156109e057600080fd5b80359060200191846020830284011164010000000083111715610a0257600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050919291929080359060200190640100000000811115610a6257600080fd5b820183602082011115610a7457600080fd5b80359060200191846020830284011164010000000083111715610a9657600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f820116905080830192505050505050509192919290505050612585565b6040518080602001828103825283818151815260200191508051906020019060200280838360005b83811015610b28578082015181840152602081019050610b0d565b505050509050019250505060405180910390f35b348015610b4857600080fd5b50610b7560048036036020811015610b5f57600080fd5b81019080803590602001909291905050506126cb565b604051808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018481526020018381526020018281526020019550505050505060405180910390f35b348015610c0b57600080fd5b50610c14612741565b005b348015610c2257600080fd5b50610cdc60048036036020811015610c3957600080fd5b8101908080359060200190640100000000811115610c5657600080fd5b820183602082011115610c6857600080fd5b80359060200191846001830284011164010000000083111715610c8a57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050509192919290505050612813565b005b348015610cea57600080fd5b50610cf36128c5565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b348015610d4157600080fd5b50610d4a6128ef565b604051808215151515815260200191505060405180910390f35b348015610d7057600080fd5b50610d79612947565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610db9578082015181840152602081019050610d9e565b50505050905090810190601f168015610de65780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b348015610e0057600080fd5b50610e096129e5565b005b348015610e1757600080fd5b50610e6660048036036040811015610e2e57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803515159060200190929190505050612ab7565b005b348015610e7457600080fd5b50610ea160048036036020811015610e8b57600080fd5b8101908080359060200190929190505050612bb8565b005b348015610eaf57600080fd5b50610edc60048036036020811015610ec657600080fd5b8101908080359060200190929190505050612c68565b005b348015610eea57600080fd5b50610f1760048036036020811015610f0157600080fd5b81019080803590602001909291905050506134cd565b6040518082815260200191505060405180910390f35b348015610f3957600080fd5b50610f6660048036036020811015610f5057600080fd5b81019080803590602001909291905050506134ea565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b348015610fb457600080fd5b5061108b60048036036040811015610fcb57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019064010000000081111561100857600080fd5b82018360208201111561101a57600080fd5b8035906020019184602083028401116401000000008311171561103c57600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050919291929050505061351d565b005b6110b9600480360360208110156110a357600080fd5b81019080803590602001909291905050506135e7565b005b3480156110c757600080fd5b5061112a600480360360408110156110de57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050613ac0565b604051808215151515815260200191505060405180910390f35b34801561115057600080fd5b5061125e600480360360a081101561116757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919080359060200190929190803590602001906401000000008111156111d857600080fd5b8201836020820111156111ea57600080fd5b8035906020019184600183028401116401000000008311171561120c57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050509192919290505050613c2f565b005b34801561126c57600080fd5b506112af6004803603602081101561128357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050613d6a565b005b3480156112bd57600080fd5b506112fe600480360360608110156112d457600080fd5b81019080803590602001909291908035906020019092919080359060200190929190505050613d87565b005b34801561130c57600080fd5b506113396004803603602081101561132357600080fd5b81019080803590602001909291905050506140b8565b005b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b60006301ffc9a760e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061142e575063d9b67a2660e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b1561143c5760019050611441565b600090505b919050565b600c8054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156114dc5780601f106114b1576101008083540402835291602001916114dc565b820191906000526020600020905b8154815290600101906020018083116114bf57829003601f168201915b505050505081565b60606114ef826141df565b611544576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260258152602001806158316025913960400191505060405180910390fd5b6115f060028054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156115dd5780601f106115b2576101008083540402835291602001916115dd565b820191906000526020600020905b8154815290600101906020018083116115c057829003601f168201915b50505050506115eb8461424b565b614378565b9050919050565b600f5481565b600b6020528060005260406000206000915090505481565b600e5481565b8473ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16148061165b575061165a8533613ac0565b5b6116b0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602f815260200180615882602f913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611736576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260308152602001806158016030913960400191505060405180910390fd5b611742858585856143bc565b61174f8585858585614721565b5050505050565b60008088116117cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260168152602001807f43616e6e6f74207072696e74203020706965636573210000000000000000000081525060200191505060405180910390fd5b8760045402341015611847576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260148152602001807f496e73756666696369656e742042616c616e636500000000000000000000000081525060200191505060405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163460405180600001905060006040518083038185875af1925050503d80600081146118c7576040519150601f19603f3d011682016040523d82523d6000602084013e6118cc565b606091505b50505060006118d9614a14565b90506118e3614a31565b33600a600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060008686905011156119a657807f6bb7ff708619ba0610cba295a58592e0451dee2622938c8755667688daf3529b878760405180806020018281038252848482818152602001925080828437600081840152601f19601f820116905080830192505050935050505060405180910390a25b6119f633828b87878080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f82011690508083019250505050505050614a45565b88600b6000838152602001908152602001600020819055507f7f4300e9b32fc7c8d6d3e1fcb2fdfa59b363691a535909f2d72b4faaf50140dc818a8a8a3360405180868152602001858152602001806020018373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018281038252858582818152602001925080828437600081840152601f19601f820116905080830192505050965050505050505060405180910390a180915050979650505050505050565b8181806000803373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000848152602001908152602001600020541015611b6e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602f8152602001806158b1602f913960400191505060405180910390fd5b844210611be3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260138152602001807f41756374696f6e2044617465205061737365640000000000000000000000000081525060200191505060405180910390fd5b8462127500420111611c5d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260148152602001807f41756374696f6e204461746520546f6f2046617200000000000000000000000081525060200191505060405180910390fd5b60008611611cd3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260198152602001807f41756374696f6e2050726963652043616e6e6f7420426520300000000000000081525060200191505060405180910390fd5b60008090505b83811015611eba57611cfe333087600160405180602001604052806000815250613c2f565b6040518060a001604052803373ffffffffffffffffffffffffffffffffffffffff168152602001600073ffffffffffffffffffffffffffffffffffffffff1681526020018881526020018781526020018681525060106000600e54815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160010160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506040820151816002015560608201518160030155608082015181600401559050507f0eea1fe6c42f98615e077fa21cedc5e2a85335a287a5f30bed61a0b8f70787af338689600e548a604051808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018581526020018481526020018381526020018281526020019550505050505060405180910390a1600e600081548092919060010191905055508080600101915050611cd9565b50505050505050565b42601060008381526020019081526020016000206003015411611ee557600080fd5b34662386f26fc100006010600084815260200190815260200160002060020154011115611f1157600080fd5b6010600082815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161415611f8057600080fd5b6010600082815260200190815260200160002060010160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161415611fef57600080fd5b600073ffffffffffffffffffffffffffffffffffffffff166010600083815260200190815260200160002060010160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461210c576010600082815260200190815260200160002060010160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16601060008381526020019081526020016000206002015460405180600001905060006040518083038185875af1925050503d8060008114612103576040519150601f19603f3d011682016040523d82523d6000602084013e612108565b606091505b5050505b346010600083815260200190815260200160002060020181905550336010600083815260200190815260200160002060010160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507f4dcc013473324698bfbe263facec4ea4b1bc43624236542deabec62c2122b3053360106000848152602001908152602001600020600401548334604051808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200184815260200183815260200182815260200194505050505060405180910390a150565b60001515600660149054906101000a900460ff16151514612299576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600e8152602001807f496d706f727473204c6f636b656400000000000000000000000000000000000081525060200191505060405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166323b872dd336000886040518463ffffffff1660e01b8152600401808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019350505050600060405180830381600087803b15801561237757600080fd5b505af115801561238b573d6000803e3d6000fd5b505050506000612399614a14565b90506123a3614a31565b33600a600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600085859050111561246657807f6bb7ff708619ba0610cba295a58592e0451dee2622938c8755667688daf3529b868660405180806020018281038252848482818152602001925080828437600081840152601f19601f820116905080830192505050935050505060405180910390a25b6124b73382600186868080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f82011690508083019250505050505050614a45565b6001600b6000838152602001908152602001600020819055507f7f4300e9b32fc7c8d6d3e1fcb2fdfa59b363691a535909f2d72b4faaf50140dc8160013360405180848152602001838152602001806020018373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018281038252600c8152602001807f496d706f7274656420417274000000000000000000000000000000000000000081525060200194505050505060405180910390a1505050505050565b606081518351146125e1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c815260200180615856602c913960400191505060405180910390fd5b606083516040519080825280602002602001820160405280156126135781602001602082028038833980820191505090505b50905060008090505b84518110156126c05760008086838151811061263457fe5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600085838151811061268457fe5b60200260200101518152602001908152602001600020548282815181106126a757fe5b602002602001018181525050808060010191505061261c565b508091505092915050565b60106020528060005260406000206000915090508060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16908060010160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16908060020154908060030154908060040154905085565b6127496128ef565b61275257600080fd5b600073ffffffffffffffffffffffffffffffffffffffff16600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146128b9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602e8152602001806158e0602e913960400191505060405180910390fd5b6128c281614b93565b50565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614905090565b600d8054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156129dd5780601f106129b2576101008083540402835291602001916129dd565b820191906000526020600020905b8154815290600101906020018083116129c057829003601f168201915b505050505081565b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614612a8b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602e8152602001806158e0602e913960400191505060405180910390fd5b600660149054906101000a900460ff1615600660146101000a81548160ff021916908315150217905550565b80600160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051808215151515815260200191505060405180910390a35050565b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614612c5e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602e8152602001806158e0602e913960400191505060405180910390fd5b8060048190555050565b42601060008381526020019081526020016000206003015410612cf3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260138152602001807f41756374696f6e204e6f7420457870697265640000000000000000000000000081525060200191505060405180910390fd5b600060106000838152602001908152602001600020600201541415612d80576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260118152602001807f41756374696f6e20436f6e636c7564656400000000000000000000000000000081525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff166010600083815260200190815260200160002060010160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146131e9573073ffffffffffffffffffffffffffffffffffffffff1663f242432a306010600085815260200190815260200160002060010160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16601060008681526020019081526020016000206004015460016040518563ffffffff1660e01b8152600401808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018381526020018281526020018060200182810382526000815260200160200195505050505050600060405180830381600087803b158015612f0e57600080fd5b505af1158015612f22573d6000803e3d6000fd5b5050505060006103e8600f5460106000858152602001908152602001600020600201540281612f4d57fe5b049050600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168160405180600001905060006040518083038185875af1925050503d8060008114612fd0576040519150601f19603f3d011682016040523d82523d6000602084013e612fd5565b606091505b5050506010600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1661304e826010600086815260200190815260200160002060020154614bad90919063ffffffff16565b60405180600001905060006040518083038185875af1925050503d8060008114613094576040519150601f19603f3d011682016040523d82523d6000602084013e613099565b606091505b5050507f8785514ea53c6c269e8aeffae98a347f0317c95397a131044a727f2e2337a927601060008481526020019081526020016000206004015460106000858152602001908152602001600020600201546010600086815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166010600087815260200190815260200160002060010160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1686604051808681526020018581526020018473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019550505050505060405180910390a150613458565b3073ffffffffffffffffffffffffffffffffffffffff1663f242432a306010600085815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16601060008681526020019081526020016000206004015460016040518563ffffffff1660e01b8152600401808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018381526020018281526020018060200182810382526000815260200160200195505050505050600060405180830381600087803b15801561330d57600080fd5b505af1158015613321573d6000803e3d6000fd5b505050507f8785514ea53c6c269e8aeffae98a347f0317c95397a131044a727f2e2337a927601060008381526020019081526020016000206004015460006010600085815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166010600086815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1685604051808681526020018581526020018473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019550505050505060405180910390a15b60006010600083815260200190815260200160002060010160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000601060008381526020019081526020016000206002018190555050565b6000600b6000838152602001908152602001600020549050919050565b600a6020528060005260406000206000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156135a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c815260200180615987602c913960400191505060405180910390fd5b60008090505b81518110156135e25760008282815181106135c057fe5b602002602001015190506135d48482614c36565b5080806001019150506135a9565b505050565b4260106000838152602001908152602001600020600301541061360957600080fd5b346010600083815260200190815260200160002060020154111561362c57600080fd5b6010600082815260200190815260200160002060010160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff161461369b57600080fd5b60006010600083815260200190815260200160002060020154116136be57600080fd5b3073ffffffffffffffffffffffffffffffffffffffff1663f242432a3033601060008681526020019081526020016000206004015460016040518563ffffffff1660e01b8152600401808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018381526020018281526020018060200182810382526000815260200160200195505050505050600060405180830381600087803b1580156137ac57600080fd5b505af11580156137c0573d6000803e3d6000fd5b5050505060006103e8600f54601060008581526020019081526020016000206002015402816137eb57fe5b049050600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168160405180600001905060006040518083038185875af1925050503d806000811461386e576040519150601f19603f3d011682016040523d82523d6000602084013e613873565b606091505b5050506010600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166138ec826010600086815260200190815260200160002060020154614bad90919063ffffffff16565b60405180600001905060006040518083038185875af1925050503d8060008114613932576040519150601f19603f3d011682016040523d82523d6000602084013e613937565b606091505b5050507f8785514ea53c6c269e8aeffae98a347f0317c95397a131044a727f2e2337a927601060008481526020019081526020016000206004015460106000858152602001908152602001600020600201546010600086815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff163386604051808681526020018581526020018473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019550505050505060405180910390a1336010600084815260200190815260200160002060010160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600060106000848152602001908152602001600020600201819055505050565b600080600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508273ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1663c4552791866040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b158015613b7c57600080fd5b505afa158015613b90573d6000803e3d6000fd5b505050506040513d6020811015613ba657600080fd5b810190808051906020019092919050505073ffffffffffffffffffffffffffffffffffffffff161415613bdd576001915050613c29565b8273ffffffffffffffffffffffffffffffffffffffff163073ffffffffffffffffffffffffffffffffffffffff161415613c1b576001915050613c29565b613c258484614d45565b9150505b92915050565b8473ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161480613c6f5750613c6e8533613ac0565b5b613cc4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a8152602001806157a2602a913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415613d4a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602b815260200180615777602b913960400191505060405180910390fd5b613d5685858585614dd9565b613d638585858585614fcd565b5050505050565b613d726128ef565b613d7b57600080fd5b613d848161523e565b50565b6010600084815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614613e5e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601a8152602001807f596f7520446f6e74204f776e20546869732041756374696f6e2100000000000081525060200191505060405180910390fd5b6010600084815260200190815260200160002060010160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff1614613f36576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260198152602001807f536f6d656f6e6520576f6e20546869732041756374696f6e210000000000000081525060200191505060405180910390fd5b42601060008581526020019081526020016000206003015410613fc1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260188152602001807f41756374696f6e204973205374696c6c2052756e6e696e67000000000000000081525060200191505060405180910390fd5b428211614036576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260138152602001807f41756374696f6e2044617465205061737365640000000000000000000000000081525060200191505060405180910390fd5b8160106000858152602001908152602001600020600301819055508060106000858152602001908152602001600020600201819055507f4e61e861fbd4e4dbb19801c1a16f1a620c774229f739a332716ca391cfa9730883838360405180848152602001838152602001828152602001935050505060405180910390a1505050565b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461415e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602e8152602001806158e0602e913960400191505060405180910390fd5b6103e881106141d5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600d8152602001807f46656520546f6f2048696768210000000000000000000000000000000000000081525060200191505060405180910390fd5b80600f8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff16600a600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b60606000821415614293576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050614373565b600082905060005b600082146142bd578080600101915050600a82816142b557fe5b04915061429b565b6060816040519080825280601f01601f1916602001820160405280156142f25781602001600182028038833980820191505090505b50905060006001830390505b6000861461436b57600a868161431057fe5b0660300160f81b8282806001900393508151811061432a57fe5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a868161436357fe5b0495506142fe565b819450505050505b919050565b60606143b48383604051806020016040528060008152506040518060200160405280600081525060405180602001604052806000815250615338565b905092915050565b8051825114614416576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260358152602001806157cc6035913960400191505060405180910390fd5b60008251905060008090505b81811015614613576144b283828151811061443957fe5b60200260200101516000808973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600087858151811061448d57fe5b6020026020010151815260200190815260200160002054614bad90919063ffffffff16565b6000808873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008684815181106144fe57fe5b60200260200101518152602001908152602001600020819055506145a083828151811061452757fe5b60200260200101516000808873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600087858151811061457b57fe5b60200260200101518152602001908152602001600020546155fe90919063ffffffff16565b6000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008684815181106145ec57fe5b60200260200101518152602001908152602001600020819055508080600101915050614422565b508373ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8686604051808060200180602001838103835285818151815260200191508051906020019060200280838360005b838110156146c35780820151818401526020810190506146a8565b50505050905001838103825284818151815260200191508051906020019060200280838360005b838110156147055780820151818401526020810190506146ea565b5050505090500194505050505060405180910390a45050505050565b6147408473ffffffffffffffffffffffffffffffffffffffff16615686565b801561477857503073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b15614a0d5760008473ffffffffffffffffffffffffffffffffffffffff1663bc197c8133888787876040518663ffffffff1660e01b8152600401808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001806020018060200180602001848103845287818151815260200191508051906020019060200280838360005b8381101561485e578082015181840152602081019050614843565b50505050905001848103835286818151815260200191508051906020019060200280838360005b838110156148a0578082015181840152602081019050614885565b50505050905001848103825285818151815260200191508051906020019080838360005b838110156148df5780820151818401526020810190506148c4565b50505050905090810190601f16801561490c5780820380516001836020036101000a031916815260200191505b5098505050505050505050602060405180830381600087803b15801561493157600080fd5b505af1158015614945573d6000803e3d6000fd5b505050506040513d602081101561495b57600080fd5b8101908080519060200190929190505050905063bc197c8160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614614a0b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603f81526020018061590e603f913960400191505060405180910390fd5b505b5050505050565b6000614a2c60016009546155fe90919063ffffffff16565b905090565b600960008154809291906001019190505550565b614aa7826000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000868152602001908152602001600020546155fe90919063ffffffff16565b6000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000858152602001908152602001600020819055508373ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628686604051808381526020018281526020019250505060405180910390a4614b8d600085858585614fcd565b50505050565b8060029080519060200190614ba99291906156d1565b5050565b600082821115614c25576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260178152602001807f536166654d617468237375623a20554e444552464c4f5700000000000000000081525060200191505060405180910390fd5b600082840390508091505092915050565b803373ffffffffffffffffffffffffffffffffffffffff16600a600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614614cee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260318152602001806159b36031913960400191505060405180910390fd5b82600a600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550505050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b614e3b816000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600085815260200190815260200160002054614bad90919063ffffffff16565b6000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550614ef0816000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000858152602001908152602001600020546155fe90919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000848152602001908152602001600020819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628585604051808381526020018281526020019250505060405180910390a450505050565b614fec8473ffffffffffffffffffffffffffffffffffffffff16615686565b801561502457503073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b156152375760008473ffffffffffffffffffffffffffffffffffffffff1663f23a6e6133888787876040518663ffffffff1660e01b8152600401808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200184815260200183815260200180602001828103825283818151815260200191508051906020019080838360005b8381101561510b5780820151818401526020810190506150f0565b50505050905090810190601f1680156151385780820380516001836020036101000a031916815260200191505b509650505050505050602060405180830381600087803b15801561515b57600080fd5b505af115801561516f573d6000803e3d6000fd5b505050506040513d602081101561518557600080fd5b8101908080519060200190929190505050905063f23a6e6160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614615235576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603a81526020018061594d603a913960400191505060405180910390fd5b505b5050505050565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561527857600080fd5b8073ffffffffffffffffffffffffffffffffffffffff16600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6060808690506060869050606086905060608690506060869050606081518351855187518951010101016040519080825280601f01601f1916602001820160405280156153945781602001600182028038833980820191505090505b5090506060819050600080905060008090505b8851811015615415578881815181106153bc57fe5b602001015160f81c60f81b8383806001019450815181106153d957fe5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535080806001019150506153a7565b5060008090505b875181101561548a5787818151811061543157fe5b602001015160f81c60f81b83838060010194508151811061544e57fe5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350808060010191505061541c565b5060008090505b86518110156154ff578681815181106154a657fe5b602001015160f81c60f81b8383806001019450815181106154c357fe5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053508080600101915050615491565b5060008090505b85518110156155745785818151811061551b57fe5b602001015160f81c60f81b83838060010194508151811061553857fe5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053508080600101915050615506565b5060008090505b84518110156155e95784818151811061559057fe5b602001015160f81c60f81b8383806001019450815181106155ad57fe5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350808060010191505061557b565b50819850505050505050505095945050505050565b60008082840190508381101561567c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260168152602001807f536166654d617468236164643a204f564552464c4f570000000000000000000081525060200191505060405180910390fd5b8091505092915050565b60008060007fc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a47060001b9050833f91506000801b82141580156156c85750808214155b92505050919050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f1061571257805160ff1916838001178555615740565b82800160010185558215615740579182015b8281111561573f578251825591602001919060010190615724565b5b50905061574d9190615751565b5090565b61577391905b8082111561576f576000816000905550600101615757565b5090565b9056fe4552433131353523736166655472616e7366657246726f6d3a20494e56414c49445f524543495049454e544552433131353523736166655472616e7366657246726f6d3a20494e56414c49445f4f50455241544f5245524331313535235f7361666542617463685472616e7366657246726f6d3a20494e56414c49445f4152524159535f4c454e47544845524331313535237361666542617463685472616e7366657246726f6d3a20494e56414c49445f524543495049454e544552433732315472616461626c65237572693a204e4f4e4558495354454e545f544f4b454e455243313135352362616c616e63654f6642617463683a20494e56414c49445f41525241595f4c454e47544845524331313535237361666542617463685472616e7366657246726f6d3a20494e56414c49445f4f50455241544f52455243313135355472616461626c65236f776e6572734f6e6c793a204f4e4c595f4f574e4552535f414c4c4f574544455243313135355472616461626c65236f776e6572734f6e6c793a204f4e4c595f41444d494e5f414c4c4f57454445524331313535235f63616c6c6f6e45524331313535426174636852656365697665643a20494e56414c49445f4f4e5f524543454956455f4d45535341474545524331313535235f63616c6c6f6e4552433131353552656365697665643a20494e56414c49445f4f4e5f524543454956455f4d455353414745455243313135355472616461626c652373657443726561746f723a20494e56414c49445f414444524553532e455243313135355472616461626c652363726561746f724f6e6c793a204f4e4c595f43524541544f525f414c4c4f574544a265627a7a72315820a9c0d3fb368ac9b137e4b0a8638687fd32ccdc4d1909f5d738ff0bf4b4f137ec64736f6c634300050c0032000000000000000000000000a5409ec958c83c3f309868babaca7c86dcb077c1

Deployed Bytecode

0x6080604052600436106101e25760003560e01c80638da5cb5b11610102578063cd53d08e11610095578063f242432a11610064578063f242432a14611144578063f2fde38b14611260578063f4d9fecc146112b1578063f59e754c14611300576101e2565b8063cd53d08e14610f2d578063d2a6b51a14610fa8578063d96a094a1461108d578063e985e9c5146110bb576101e2565b8063a22cb465116100d1578063a22cb46514610e0b578063a8c5ba8114610e68578063b876130114610ea3578063bd85b03914610ede576101e2565b80638da5cb5b14610cde5780638f32d59b14610d3557806395d89b4114610d645780639751290514610df4576101e2565b806340ffae2e1161017a5780634e1273f4116101495780634e1273f41461098e578063669c008314610b3c578063715018a614610bff5780637e518ec814610c16576101e2565b806340ffae2e146106e1578063431f21da14610822578063454a2ab31461087b5780634cd365cb146108a9576101e2565b806314525b6b116101b657806314525b6b1461040c5780632693ebf2146104375780632ad71573146104865780632eb2c2d6146104b1576101e2565b8062fdd58e146101e757806301ffc9a71461025657806306fdde03146102c85780630e89341c14610358575b600080fd5b3480156101f357600080fd5b506102406004803603604081101561020a57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061133b565b6040518082815260200191505060405180910390f35b34801561026257600080fd5b506102ae6004803603602081101561027957600080fd5b8101908080357bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19169060200190929190505050611395565b604051808215151515815260200191505060405180910390f35b3480156102d457600080fd5b506102dd611446565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561031d578082015181840152602081019050610302565b50505050905090810190601f16801561034a5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561036457600080fd5b506103916004803603602081101561037b57600080fd5b81019080803590602001909291905050506114e4565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156103d15780820151818401526020810190506103b6565b50505050905090810190601f1680156103fe5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561041857600080fd5b506104216115f7565b6040518082815260200191505060405180910390f35b34801561044357600080fd5b506104706004803603602081101561045a57600080fd5b81019080803590602001909291905050506115fd565b6040518082815260200191505060405180910390f35b34801561049257600080fd5b5061049b611615565b6040518082815260200191505060405180910390f35b3480156104bd57600080fd5b506106df600480360360a08110156104d457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019064010000000081111561053157600080fd5b82018360208201111561054357600080fd5b8035906020019184602083028401116401000000008311171561056557600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f820116905080830192505050505050509192919290803590602001906401000000008111156105c557600080fd5b8201836020820111156105d757600080fd5b803590602001918460208302840111640100000000831117156105f957600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f8201169050808301925050505050505091929192908035906020019064010000000081111561065957600080fd5b82018360208201111561066b57600080fd5b8035906020019184600183028401116401000000008311171561068d57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f82011690508083019250505050505050919291929050505061161b565b005b61080c600480360360808110156106f757600080fd5b81019080803590602001909291908035906020019064010000000081111561071e57600080fd5b82018360208201111561073057600080fd5b8035906020019184600183028401116401000000008311171561075257600080fd5b90919293919293908035906020019064010000000081111561077357600080fd5b82018360208201111561078557600080fd5b803590602001918460018302840111640100000000831117156107a757600080fd5b9091929391929390803590602001906401000000008111156107c857600080fd5b8201836020820111156107da57600080fd5b803590602001918460018302840111640100000000831117156107fc57600080fd5b9091929391929390505050611756565b6040518082815260200191505060405180910390f35b34801561082e57600080fd5b506108796004803603608081101561084557600080fd5b8101908080359060200190929190803590602001909291908035906020019092919080359060200190929190505050611ac4565b005b6108a76004803603602081101561089157600080fd5b8101908080359060200190929190505050611ec3565b005b3480156108b557600080fd5b5061098c600480360360608110156108cc57600080fd5b8101908080359060200190929190803590602001906401000000008111156108f357600080fd5b82018360208201111561090557600080fd5b8035906020019184600183028401116401000000008311171561092757600080fd5b90919293919293908035906020019064010000000081111561094857600080fd5b82018360208201111561095a57600080fd5b8035906020019184600183028401116401000000008311171561097c57600080fd5b9091929391929390505050612210565b005b34801561099a57600080fd5b50610ae5600480360360408110156109b157600080fd5b81019080803590602001906401000000008111156109ce57600080fd5b8201836020820111156109e057600080fd5b80359060200191846020830284011164010000000083111715610a0257600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050919291929080359060200190640100000000811115610a6257600080fd5b820183602082011115610a7457600080fd5b80359060200191846020830284011164010000000083111715610a9657600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f820116905080830192505050505050509192919290505050612585565b6040518080602001828103825283818151815260200191508051906020019060200280838360005b83811015610b28578082015181840152602081019050610b0d565b505050509050019250505060405180910390f35b348015610b4857600080fd5b50610b7560048036036020811015610b5f57600080fd5b81019080803590602001909291905050506126cb565b604051808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018481526020018381526020018281526020019550505050505060405180910390f35b348015610c0b57600080fd5b50610c14612741565b005b348015610c2257600080fd5b50610cdc60048036036020811015610c3957600080fd5b8101908080359060200190640100000000811115610c5657600080fd5b820183602082011115610c6857600080fd5b80359060200191846001830284011164010000000083111715610c8a57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050509192919290505050612813565b005b348015610cea57600080fd5b50610cf36128c5565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b348015610d4157600080fd5b50610d4a6128ef565b604051808215151515815260200191505060405180910390f35b348015610d7057600080fd5b50610d79612947565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610db9578082015181840152602081019050610d9e565b50505050905090810190601f168015610de65780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b348015610e0057600080fd5b50610e096129e5565b005b348015610e1757600080fd5b50610e6660048036036040811015610e2e57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803515159060200190929190505050612ab7565b005b348015610e7457600080fd5b50610ea160048036036020811015610e8b57600080fd5b8101908080359060200190929190505050612bb8565b005b348015610eaf57600080fd5b50610edc60048036036020811015610ec657600080fd5b8101908080359060200190929190505050612c68565b005b348015610eea57600080fd5b50610f1760048036036020811015610f0157600080fd5b81019080803590602001909291905050506134cd565b6040518082815260200191505060405180910390f35b348015610f3957600080fd5b50610f6660048036036020811015610f5057600080fd5b81019080803590602001909291905050506134ea565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b348015610fb457600080fd5b5061108b60048036036040811015610fcb57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019064010000000081111561100857600080fd5b82018360208201111561101a57600080fd5b8035906020019184602083028401116401000000008311171561103c57600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050919291929050505061351d565b005b6110b9600480360360208110156110a357600080fd5b81019080803590602001909291905050506135e7565b005b3480156110c757600080fd5b5061112a600480360360408110156110de57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050613ac0565b604051808215151515815260200191505060405180910390f35b34801561115057600080fd5b5061125e600480360360a081101561116757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919080359060200190929190803590602001906401000000008111156111d857600080fd5b8201836020820111156111ea57600080fd5b8035906020019184600183028401116401000000008311171561120c57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050509192919290505050613c2f565b005b34801561126c57600080fd5b506112af6004803603602081101561128357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050613d6a565b005b3480156112bd57600080fd5b506112fe600480360360608110156112d457600080fd5b81019080803590602001909291908035906020019092919080359060200190929190505050613d87565b005b34801561130c57600080fd5b506113396004803603602081101561132357600080fd5b81019080803590602001909291905050506140b8565b005b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b60006301ffc9a760e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061142e575063d9b67a2660e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b1561143c5760019050611441565b600090505b919050565b600c8054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156114dc5780601f106114b1576101008083540402835291602001916114dc565b820191906000526020600020905b8154815290600101906020018083116114bf57829003601f168201915b505050505081565b60606114ef826141df565b611544576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260258152602001806158316025913960400191505060405180910390fd5b6115f060028054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156115dd5780601f106115b2576101008083540402835291602001916115dd565b820191906000526020600020905b8154815290600101906020018083116115c057829003601f168201915b50505050506115eb8461424b565b614378565b9050919050565b600f5481565b600b6020528060005260406000206000915090505481565b600e5481565b8473ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16148061165b575061165a8533613ac0565b5b6116b0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602f815260200180615882602f913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611736576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260308152602001806158016030913960400191505060405180910390fd5b611742858585856143bc565b61174f8585858585614721565b5050505050565b60008088116117cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260168152602001807f43616e6e6f74207072696e74203020706965636573210000000000000000000081525060200191505060405180910390fd5b8760045402341015611847576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260148152602001807f496e73756666696369656e742042616c616e636500000000000000000000000081525060200191505060405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163460405180600001905060006040518083038185875af1925050503d80600081146118c7576040519150601f19603f3d011682016040523d82523d6000602084013e6118cc565b606091505b50505060006118d9614a14565b90506118e3614a31565b33600a600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060008686905011156119a657807f6bb7ff708619ba0610cba295a58592e0451dee2622938c8755667688daf3529b878760405180806020018281038252848482818152602001925080828437600081840152601f19601f820116905080830192505050935050505060405180910390a25b6119f633828b87878080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f82011690508083019250505050505050614a45565b88600b6000838152602001908152602001600020819055507f7f4300e9b32fc7c8d6d3e1fcb2fdfa59b363691a535909f2d72b4faaf50140dc818a8a8a3360405180868152602001858152602001806020018373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018281038252858582818152602001925080828437600081840152601f19601f820116905080830192505050965050505050505060405180910390a180915050979650505050505050565b8181806000803373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000848152602001908152602001600020541015611b6e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602f8152602001806158b1602f913960400191505060405180910390fd5b844210611be3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260138152602001807f41756374696f6e2044617465205061737365640000000000000000000000000081525060200191505060405180910390fd5b8462127500420111611c5d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260148152602001807f41756374696f6e204461746520546f6f2046617200000000000000000000000081525060200191505060405180910390fd5b60008611611cd3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260198152602001807f41756374696f6e2050726963652043616e6e6f7420426520300000000000000081525060200191505060405180910390fd5b60008090505b83811015611eba57611cfe333087600160405180602001604052806000815250613c2f565b6040518060a001604052803373ffffffffffffffffffffffffffffffffffffffff168152602001600073ffffffffffffffffffffffffffffffffffffffff1681526020018881526020018781526020018681525060106000600e54815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160010160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506040820151816002015560608201518160030155608082015181600401559050507f0eea1fe6c42f98615e077fa21cedc5e2a85335a287a5f30bed61a0b8f70787af338689600e548a604051808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018581526020018481526020018381526020018281526020019550505050505060405180910390a1600e600081548092919060010191905055508080600101915050611cd9565b50505050505050565b42601060008381526020019081526020016000206003015411611ee557600080fd5b34662386f26fc100006010600084815260200190815260200160002060020154011115611f1157600080fd5b6010600082815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161415611f8057600080fd5b6010600082815260200190815260200160002060010160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161415611fef57600080fd5b600073ffffffffffffffffffffffffffffffffffffffff166010600083815260200190815260200160002060010160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461210c576010600082815260200190815260200160002060010160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16601060008381526020019081526020016000206002015460405180600001905060006040518083038185875af1925050503d8060008114612103576040519150601f19603f3d011682016040523d82523d6000602084013e612108565b606091505b5050505b346010600083815260200190815260200160002060020181905550336010600083815260200190815260200160002060010160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507f4dcc013473324698bfbe263facec4ea4b1bc43624236542deabec62c2122b3053360106000848152602001908152602001600020600401548334604051808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200184815260200183815260200182815260200194505050505060405180910390a150565b60001515600660149054906101000a900460ff16151514612299576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600e8152602001807f496d706f727473204c6f636b656400000000000000000000000000000000000081525060200191505060405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166323b872dd336000886040518463ffffffff1660e01b8152600401808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019350505050600060405180830381600087803b15801561237757600080fd5b505af115801561238b573d6000803e3d6000fd5b505050506000612399614a14565b90506123a3614a31565b33600a600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600085859050111561246657807f6bb7ff708619ba0610cba295a58592e0451dee2622938c8755667688daf3529b868660405180806020018281038252848482818152602001925080828437600081840152601f19601f820116905080830192505050935050505060405180910390a25b6124b73382600186868080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f82011690508083019250505050505050614a45565b6001600b6000838152602001908152602001600020819055507f7f4300e9b32fc7c8d6d3e1fcb2fdfa59b363691a535909f2d72b4faaf50140dc8160013360405180848152602001838152602001806020018373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018281038252600c8152602001807f496d706f7274656420417274000000000000000000000000000000000000000081525060200194505050505060405180910390a1505050505050565b606081518351146125e1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c815260200180615856602c913960400191505060405180910390fd5b606083516040519080825280602002602001820160405280156126135781602001602082028038833980820191505090505b50905060008090505b84518110156126c05760008086838151811061263457fe5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600085838151811061268457fe5b60200260200101518152602001908152602001600020548282815181106126a757fe5b602002602001018181525050808060010191505061261c565b508091505092915050565b60106020528060005260406000206000915090508060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16908060010160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16908060020154908060030154908060040154905085565b6127496128ef565b61275257600080fd5b600073ffffffffffffffffffffffffffffffffffffffff16600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146128b9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602e8152602001806158e0602e913960400191505060405180910390fd5b6128c281614b93565b50565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614905090565b600d8054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156129dd5780601f106129b2576101008083540402835291602001916129dd565b820191906000526020600020905b8154815290600101906020018083116129c057829003601f168201915b505050505081565b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614612a8b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602e8152602001806158e0602e913960400191505060405180910390fd5b600660149054906101000a900460ff1615600660146101000a81548160ff021916908315150217905550565b80600160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051808215151515815260200191505060405180910390a35050565b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614612c5e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602e8152602001806158e0602e913960400191505060405180910390fd5b8060048190555050565b42601060008381526020019081526020016000206003015410612cf3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260138152602001807f41756374696f6e204e6f7420457870697265640000000000000000000000000081525060200191505060405180910390fd5b600060106000838152602001908152602001600020600201541415612d80576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260118152602001807f41756374696f6e20436f6e636c7564656400000000000000000000000000000081525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff166010600083815260200190815260200160002060010160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146131e9573073ffffffffffffffffffffffffffffffffffffffff1663f242432a306010600085815260200190815260200160002060010160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16601060008681526020019081526020016000206004015460016040518563ffffffff1660e01b8152600401808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018381526020018281526020018060200182810382526000815260200160200195505050505050600060405180830381600087803b158015612f0e57600080fd5b505af1158015612f22573d6000803e3d6000fd5b5050505060006103e8600f5460106000858152602001908152602001600020600201540281612f4d57fe5b049050600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168160405180600001905060006040518083038185875af1925050503d8060008114612fd0576040519150601f19603f3d011682016040523d82523d6000602084013e612fd5565b606091505b5050506010600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1661304e826010600086815260200190815260200160002060020154614bad90919063ffffffff16565b60405180600001905060006040518083038185875af1925050503d8060008114613094576040519150601f19603f3d011682016040523d82523d6000602084013e613099565b606091505b5050507f8785514ea53c6c269e8aeffae98a347f0317c95397a131044a727f2e2337a927601060008481526020019081526020016000206004015460106000858152602001908152602001600020600201546010600086815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166010600087815260200190815260200160002060010160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1686604051808681526020018581526020018473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019550505050505060405180910390a150613458565b3073ffffffffffffffffffffffffffffffffffffffff1663f242432a306010600085815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16601060008681526020019081526020016000206004015460016040518563ffffffff1660e01b8152600401808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018381526020018281526020018060200182810382526000815260200160200195505050505050600060405180830381600087803b15801561330d57600080fd5b505af1158015613321573d6000803e3d6000fd5b505050507f8785514ea53c6c269e8aeffae98a347f0317c95397a131044a727f2e2337a927601060008381526020019081526020016000206004015460006010600085815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166010600086815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1685604051808681526020018581526020018473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019550505050505060405180910390a15b60006010600083815260200190815260200160002060010160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000601060008381526020019081526020016000206002018190555050565b6000600b6000838152602001908152602001600020549050919050565b600a6020528060005260406000206000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156135a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c815260200180615987602c913960400191505060405180910390fd5b60008090505b81518110156135e25760008282815181106135c057fe5b602002602001015190506135d48482614c36565b5080806001019150506135a9565b505050565b4260106000838152602001908152602001600020600301541061360957600080fd5b346010600083815260200190815260200160002060020154111561362c57600080fd5b6010600082815260200190815260200160002060010160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff161461369b57600080fd5b60006010600083815260200190815260200160002060020154116136be57600080fd5b3073ffffffffffffffffffffffffffffffffffffffff1663f242432a3033601060008681526020019081526020016000206004015460016040518563ffffffff1660e01b8152600401808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018381526020018281526020018060200182810382526000815260200160200195505050505050600060405180830381600087803b1580156137ac57600080fd5b505af11580156137c0573d6000803e3d6000fd5b5050505060006103e8600f54601060008581526020019081526020016000206002015402816137eb57fe5b049050600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168160405180600001905060006040518083038185875af1925050503d806000811461386e576040519150601f19603f3d011682016040523d82523d6000602084013e613873565b606091505b5050506010600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166138ec826010600086815260200190815260200160002060020154614bad90919063ffffffff16565b60405180600001905060006040518083038185875af1925050503d8060008114613932576040519150601f19603f3d011682016040523d82523d6000602084013e613937565b606091505b5050507f8785514ea53c6c269e8aeffae98a347f0317c95397a131044a727f2e2337a927601060008481526020019081526020016000206004015460106000858152602001908152602001600020600201546010600086815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff163386604051808681526020018581526020018473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019550505050505060405180910390a1336010600084815260200190815260200160002060010160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600060106000848152602001908152602001600020600201819055505050565b600080600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508273ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1663c4552791866040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b158015613b7c57600080fd5b505afa158015613b90573d6000803e3d6000fd5b505050506040513d6020811015613ba657600080fd5b810190808051906020019092919050505073ffffffffffffffffffffffffffffffffffffffff161415613bdd576001915050613c29565b8273ffffffffffffffffffffffffffffffffffffffff163073ffffffffffffffffffffffffffffffffffffffff161415613c1b576001915050613c29565b613c258484614d45565b9150505b92915050565b8473ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161480613c6f5750613c6e8533613ac0565b5b613cc4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a8152602001806157a2602a913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415613d4a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602b815260200180615777602b913960400191505060405180910390fd5b613d5685858585614dd9565b613d638585858585614fcd565b5050505050565b613d726128ef565b613d7b57600080fd5b613d848161523e565b50565b6010600084815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614613e5e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601a8152602001807f596f7520446f6e74204f776e20546869732041756374696f6e2100000000000081525060200191505060405180910390fd5b6010600084815260200190815260200160002060010160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff1614613f36576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260198152602001807f536f6d656f6e6520576f6e20546869732041756374696f6e210000000000000081525060200191505060405180910390fd5b42601060008581526020019081526020016000206003015410613fc1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260188152602001807f41756374696f6e204973205374696c6c2052756e6e696e67000000000000000081525060200191505060405180910390fd5b428211614036576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260138152602001807f41756374696f6e2044617465205061737365640000000000000000000000000081525060200191505060405180910390fd5b8160106000858152602001908152602001600020600301819055508060106000858152602001908152602001600020600201819055507f4e61e861fbd4e4dbb19801c1a16f1a620c774229f739a332716ca391cfa9730883838360405180848152602001838152602001828152602001935050505060405180910390a1505050565b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461415e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602e8152602001806158e0602e913960400191505060405180910390fd5b6103e881106141d5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600d8152602001807f46656520546f6f2048696768210000000000000000000000000000000000000081525060200191505060405180910390fd5b80600f8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff16600a600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b60606000821415614293576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050614373565b600082905060005b600082146142bd578080600101915050600a82816142b557fe5b04915061429b565b6060816040519080825280601f01601f1916602001820160405280156142f25781602001600182028038833980820191505090505b50905060006001830390505b6000861461436b57600a868161431057fe5b0660300160f81b8282806001900393508151811061432a57fe5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a868161436357fe5b0495506142fe565b819450505050505b919050565b60606143b48383604051806020016040528060008152506040518060200160405280600081525060405180602001604052806000815250615338565b905092915050565b8051825114614416576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260358152602001806157cc6035913960400191505060405180910390fd5b60008251905060008090505b81811015614613576144b283828151811061443957fe5b60200260200101516000808973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600087858151811061448d57fe5b6020026020010151815260200190815260200160002054614bad90919063ffffffff16565b6000808873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008684815181106144fe57fe5b60200260200101518152602001908152602001600020819055506145a083828151811061452757fe5b60200260200101516000808873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600087858151811061457b57fe5b60200260200101518152602001908152602001600020546155fe90919063ffffffff16565b6000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008684815181106145ec57fe5b60200260200101518152602001908152602001600020819055508080600101915050614422565b508373ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8686604051808060200180602001838103835285818151815260200191508051906020019060200280838360005b838110156146c35780820151818401526020810190506146a8565b50505050905001838103825284818151815260200191508051906020019060200280838360005b838110156147055780820151818401526020810190506146ea565b5050505090500194505050505060405180910390a45050505050565b6147408473ffffffffffffffffffffffffffffffffffffffff16615686565b801561477857503073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b15614a0d5760008473ffffffffffffffffffffffffffffffffffffffff1663bc197c8133888787876040518663ffffffff1660e01b8152600401808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001806020018060200180602001848103845287818151815260200191508051906020019060200280838360005b8381101561485e578082015181840152602081019050614843565b50505050905001848103835286818151815260200191508051906020019060200280838360005b838110156148a0578082015181840152602081019050614885565b50505050905001848103825285818151815260200191508051906020019080838360005b838110156148df5780820151818401526020810190506148c4565b50505050905090810190601f16801561490c5780820380516001836020036101000a031916815260200191505b5098505050505050505050602060405180830381600087803b15801561493157600080fd5b505af1158015614945573d6000803e3d6000fd5b505050506040513d602081101561495b57600080fd5b8101908080519060200190929190505050905063bc197c8160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614614a0b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603f81526020018061590e603f913960400191505060405180910390fd5b505b5050505050565b6000614a2c60016009546155fe90919063ffffffff16565b905090565b600960008154809291906001019190505550565b614aa7826000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000868152602001908152602001600020546155fe90919063ffffffff16565b6000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000858152602001908152602001600020819055508373ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628686604051808381526020018281526020019250505060405180910390a4614b8d600085858585614fcd565b50505050565b8060029080519060200190614ba99291906156d1565b5050565b600082821115614c25576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260178152602001807f536166654d617468237375623a20554e444552464c4f5700000000000000000081525060200191505060405180910390fd5b600082840390508091505092915050565b803373ffffffffffffffffffffffffffffffffffffffff16600a600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614614cee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260318152602001806159b36031913960400191505060405180910390fd5b82600a600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550505050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b614e3b816000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600085815260200190815260200160002054614bad90919063ffffffff16565b6000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550614ef0816000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000858152602001908152602001600020546155fe90919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000848152602001908152602001600020819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628585604051808381526020018281526020019250505060405180910390a450505050565b614fec8473ffffffffffffffffffffffffffffffffffffffff16615686565b801561502457503073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b156152375760008473ffffffffffffffffffffffffffffffffffffffff1663f23a6e6133888787876040518663ffffffff1660e01b8152600401808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200184815260200183815260200180602001828103825283818151815260200191508051906020019080838360005b8381101561510b5780820151818401526020810190506150f0565b50505050905090810190601f1680156151385780820380516001836020036101000a031916815260200191505b509650505050505050602060405180830381600087803b15801561515b57600080fd5b505af115801561516f573d6000803e3d6000fd5b505050506040513d602081101561518557600080fd5b8101908080519060200190929190505050905063f23a6e6160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614615235576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603a81526020018061594d603a913960400191505060405180910390fd5b505b5050505050565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561527857600080fd5b8073ffffffffffffffffffffffffffffffffffffffff16600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6060808690506060869050606086905060608690506060869050606081518351855187518951010101016040519080825280601f01601f1916602001820160405280156153945781602001600182028038833980820191505090505b5090506060819050600080905060008090505b8851811015615415578881815181106153bc57fe5b602001015160f81c60f81b8383806001019450815181106153d957fe5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535080806001019150506153a7565b5060008090505b875181101561548a5787818151811061543157fe5b602001015160f81c60f81b83838060010194508151811061544e57fe5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350808060010191505061541c565b5060008090505b86518110156154ff578681815181106154a657fe5b602001015160f81c60f81b8383806001019450815181106154c357fe5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053508080600101915050615491565b5060008090505b85518110156155745785818151811061551b57fe5b602001015160f81c60f81b83838060010194508151811061553857fe5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053508080600101915050615506565b5060008090505b84518110156155e95784818151811061559057fe5b602001015160f81c60f81b8383806001019450815181106155ad57fe5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350808060010191505061557b565b50819850505050505050505095945050505050565b60008082840190508381101561567c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260168152602001807f536166654d617468236164643a204f564552464c4f570000000000000000000081525060200191505060405180910390fd5b8091505092915050565b60008060007fc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a47060001b9050833f91506000801b82141580156156c85750808214155b92505050919050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f1061571257805160ff1916838001178555615740565b82800160010185558215615740579182015b8281111561573f578251825591602001919060010190615724565b5b50905061574d9190615751565b5090565b61577391905b8082111561576f576000816000905550600101615757565b5090565b9056fe4552433131353523736166655472616e7366657246726f6d3a20494e56414c49445f524543495049454e544552433131353523736166655472616e7366657246726f6d3a20494e56414c49445f4f50455241544f5245524331313535235f7361666542617463685472616e7366657246726f6d3a20494e56414c49445f4152524159535f4c454e47544845524331313535237361666542617463685472616e7366657246726f6d3a20494e56414c49445f524543495049454e544552433732315472616461626c65237572693a204e4f4e4558495354454e545f544f4b454e455243313135352362616c616e63654f6642617463683a20494e56414c49445f41525241595f4c454e47544845524331313535237361666542617463685472616e7366657246726f6d3a20494e56414c49445f4f50455241544f52455243313135355472616461626c65236f776e6572734f6e6c793a204f4e4c595f4f574e4552535f414c4c4f574544455243313135355472616461626c65236f776e6572734f6e6c793a204f4e4c595f41444d494e5f414c4c4f57454445524331313535235f63616c6c6f6e45524331313535426174636852656365697665643a20494e56414c49445f4f4e5f524543454956455f4d45535341474545524331313535235f63616c6c6f6e4552433131353552656365697665643a20494e56414c49445f4f4e5f524543454956455f4d455353414745455243313135355472616461626c652373657443726561746f723a20494e56414c49445f414444524553532e455243313135355472616461626c652363726561746f724f6e6c793a204f4e4c595f43524541544f525f414c4c4f574544a265627a7a72315820a9c0d3fb368ac9b137e4b0a8638687fd32ccdc4d1909f5d738ff0bf4b4f137ec64736f6c634300050c0032

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

000000000000000000000000a5409ec958c83c3f309868babaca7c86dcb077c1

-----Decoded View---------------
Arg [0] : _proxyRegistryAddress (address): 0xa5409ec958C83C3f309868babACA7c86DCB077c1

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000a5409ec958c83c3f309868babaca7c86dcb077c1


Deployed Bytecode Sourcemap

42105:4932:0:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23332:127;;8:9:-1;5:2;;;30:1;27;20:12;5:2;23332:127:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;23332:127:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;25307:240;;8:9:-1;5:2;;;30:1;27;20:12;5:2;25307:240:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;25307:240:0;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;36306:18;;8:9:-1;5:2;;;30:1;27;20:12;5:2;36306:18:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;36306:18:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37377:239;;8:9:-1;5:2;;;30:1;27;20:12;5:2;37377:239:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;37377:239:0;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;37377:239:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42578:29;;8:9:-1;5:2;;;30:1;27;20:12;5:2;42578:29:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;36234:47;;8:9:-1;5:2;;;30:1;27;20:12;5:2;36234:47:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;36234:47:0;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;42542:27;;8:9:-1;5:2;;;30:1;27;20:12;5:2;42542:27:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;18461:511;;8:9:-1;5:2;;;30:1;27;20:12;5:2;18461:511:0;;;;;;13:3:-1;8;5:12;2:2;;;30:1;27;20:12;2:2;18461:511:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21:11:-1;8;5:28;2:2;;;46:1;43;36:12;2:2;18461:511:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;18461:511:0;;;;;;101:9:-1;95:2;81:12;77:21;67:8;63:36;60:51;39:11;25:12;22:29;11:108;8:2;;;132:1;129;122:12;8:2;18461:511:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;93:3;85:6;81:16;74:27;137:4;133:9;126:4;121:3;117:14;113:30;106:37;;169:3;161:6;157:16;147:26;;18461:511:0;;;;;;;;;;;;;;;;;21:11:-1;8;5:28;2:2;;;46:1;43;36:12;2:2;18461:511:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;18461:511:0;;;;;;101:9:-1;95:2;81:12;77:21;67:8;63:36;60:51;39:11;25:12;22:29;11:108;8:2;;;132:1;129;122:12;8:2;18461:511:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;93:3;85:6;81:16;74:27;137:4;133:9;126:4;121:3;117:14;113:30;106:37;;169:3;161:6;157:16;147:26;;18461:511:0;;;;;;;;;;;;;;;;;21:11:-1;8;5:28;2:2;;;46:1;43;36:12;2:2;18461:511:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;18461:511:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;39:11;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;18461:511:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;93:3;85:6;81:16;74:27;137:4;133:9;126:4;121:3;117:14;113:30;106:37;;169:3;161:6;157:16;147:26;;18461:511:0;;;;;;;;;;;;;;;:::i;:::-;;40702:703;;;;;;13:3:-1;8;5:12;2:2;;;30:1;27;20:12;2:2;40702:703:0;;;;;;;;;;;;;;;;;;;21:11:-1;8;5:28;2:2;;;46:1;43;36:12;2:2;40702:703:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;40702:703:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;39:11;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;40702:703:0;;;;;;;;;;;;;;21:11:-1;8;5:28;2:2;;;46:1;43;36:12;2:2;40702:703:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;40702:703:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;39:11;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;40702:703:0;;;;;;;;;;;;;;21:11:-1;8;5:28;2:2;;;46:1;43;36:12;2:2;40702:703:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;40702:703:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;39:11;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;40702:703:0;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;43332:659;;8:9:-1;5:2;;;30:1;27;20:12;5:2;43332:659:0;;;;;;13:3:-1;8;5:12;2:2;;;30:1;27;20:12;2:2;43332:659:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;43999:625;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;43999:625:0;;;;;;;;;;;;;;;;;:::i;:::-;;41483:520;;8:9:-1;5:2;;;30:1;27;20:12;5:2;41483:520:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;41483:520:0;;;;;;;;;;;;;;;;;;;21:11:-1;8;5:28;2:2;;;46:1;43;36:12;2:2;41483:520:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;41483:520:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;39:11;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;41483:520:0;;;;;;;;;;;;;;21:11:-1;8;5:28;2:2;;;46:1;43;36:12;2:2;41483:520:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;41483:520:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;39:11;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;41483:520:0;;;;;;;;;;;;:::i;:::-;;23747:500;;8:9:-1;5:2;;;30:1;27;20:12;5:2;23747:500:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;23747:500:0;;;;;;;;;;21:11:-1;8;5:28;2:2;;;46:1;43;36:12;2:2;23747:500:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;23747:500:0;;;;;;101:9:-1;95:2;81:12;77:21;67:8;63:36;60:51;39:11;25:12;22:29;11:108;8:2;;;132:1;129;122:12;8:2;23747:500:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;93:3;85:6;81:16;74:27;137:4;133:9;126:4;121:3;117:14;113:30;106:37;;169:3;161:6;157:16;147:26;;23747:500:0;;;;;;;;;;;;;;;;;21:11:-1;8;5:28;2:2;;;46:1;43;36:12;2:2;23747:500:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;23747:500:0;;;;;;101:9:-1;95:2;81:12;77:21;67:8;63:36;60:51;39:11;25:12;22:29;11:108;8:2;;;132:1;129;122:12;8:2;23747:500:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;93:3;85:6;81:16;74:27;137:4;133:9;126:4;121:3;117:14;113:30;106:37;;169:3;161:6;157:16;147:26;;23747:500:0;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;23747:500:0;;;;;;;;;;;;;;;;;42787:50;;8:9:-1;5:2;;;30:1;27;20:12;5:2;42787:50:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;42787:50:0;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1465:140;;8:9:-1;5:2;;;30:1;27;20:12;5:2;1465:140:0;;;:::i;:::-;;38028:143;;8:9:-1;5:2;;;30:1;27;20:12;5:2;38028:143:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;38028:143:0;;;;;;;;;;21:11:-1;8;5:28;2:2;;;46:1;43;36:12;2:2;38028:143:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;38028:143:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;39:11;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;38028:143:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;93:3;85:6;81:16;74:27;137:4;133:9;126:4;121:3;117:14;113:30;106:37;;169:3;161:6;157:16;147:26;;38028:143:0;;;;;;;;;;;;;;;:::i;:::-;;752:79;;8:9:-1;5:2;;;30:1;27;20:12;5:2;752:79:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;1087:92;;8:9:-1;5:2;;;30:1;27;20:12;5:2;1087:92:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;36351:20;;8:9:-1;5:2;;;30:1;27;20:12;5:2;36351:20:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;36351:20:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41411:66;;8:9:-1;5:2;;;30:1;27;20:12;5:2;41411:66:0;;;:::i;:::-;;22338:227;;8:9:-1;5:2;;;30:1;27;20:12;5:2;22338:227:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;22338:227:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;43078:96;;8:9:-1;5:2;;;30:1;27;20:12;5:2;43078:96:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;43078:96:0;;;;;;;;;;;;;;;;;:::i;:::-;;45970:1060;;8:9:-1;5:2;;;30:1;27;20:12;5:2;45970:1060:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;45970:1060:0;;;;;;;;;;;;;;;;;:::i;:::-;;37786:110;;8:9:-1;5:2;;;30:1;27;20:12;5:2;37786:110:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;37786:110:0;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;36185:44;;8:9:-1;5:2;;;30:1;27;20:12;5:2;36185:44:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;36185:44:0;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;38352:279;;8:9:-1;5:2;;;30:1;27;20:12;5:2;38352:279:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;38352:279:0;;;;;;;;;;;;;;;;;;;;;21:11:-1;8;5:28;2:2;;;46:1;43;36:12;2:2;38352:279:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;38352:279:0;;;;;;101:9:-1;95:2;81:12;77:21;67:8;63:36;60:51;39:11;25:12;22:29;11:108;8:2;;;132:1;129;122:12;8:2;38352:279:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;93:3;85:6;81:16;74:27;137:4;133:9;126:4;121:3;117:14;113:30;106:37;;169:3;161:6;157:16;147:26;;38352:279:0;;;;;;;;;;;;;;;:::i;:::-;;44632:766;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;44632:766:0;;;;;;;;;;;;;;;;;:::i;:::-;;38755:469;;8:9:-1;5:2;;;30:1;27;20:12;5:2;38755:469:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;38755:469:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;17523:545;;8:9:-1;5:2;;;30:1;27;20:12;5:2;17523:545:0;;;;;;13:3:-1;8;5:12;2:2;;;30:1;27;20:12;2:2;17523:545:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21:11:-1;8;5:28;2:2;;;46:1;43;36:12;2:2;17523:545:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;17523:545:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;39:11;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;17523:545:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;93:3;85:6;81:16;74:27;137:4;133:9;126:4;121:3;117:14;113:30;106:37;;169:3;161:6;157:16;147:26;;17523:545:0;;;;;;;;;;;;;;;:::i;:::-;;1782:109;;8:9:-1;5:2;;;30:1;27;20:12;5:2;1782:109:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;1782:109:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;45406:556;;8:9:-1;5:2;;;30:1;27;20:12;5:2;45406:556:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;45406:556:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;43182:142;;8:9:-1;5:2;;;30:1;27;20:12;5:2;43182:142:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;43182:142:0;;;;;;;;;;;;;;;;;:::i;:::-;;23332:127;23406:7;23432:8;:16;23441:6;23432:16;;;;;;;;;;;;;;;:21;23449:3;23432:21;;;;;;;;;;;;23425:28;;23332:127;;;;:::o;25307:240::-;25378:4;24530:10;25411:26;;25395:42;;;:12;:42;;;;:98;;;;25074:10;25466:27;;25450:43;;;:12;:43;;;;25395:98;25391:132;;;25511:4;25504:11;;;;25391:132;25536:5;25529:12;;25307:240;;;;:::o;36306:18::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;37377:239::-;37434:13;37464:12;37472:3;37464:7;:12::i;:::-;37456:62;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37532:78;37558:15;37532:78;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37582:21;37599:3;37582:16;:21::i;:::-;37532:17;:78::i;:::-;37525:85;;37377:239;;;:::o;42578:29::-;;;;:::o;36234:47::-;;;;;;;;;;;;;;;;;:::o;42542:27::-;;;;:::o;18461:511::-;18656:5;18642:19;;:10;:19;;;18641:60;;;;18666:35;18683:5;18690:10;18666:16;:35::i;:::-;18641:60;18633:120;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18783:1;18768:17;;:3;:17;;;;18760:78;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18847:50;18870:5;18877:3;18882:4;18888:8;18847:22;:50::i;:::-;18904:62;18932:5;18939:3;18944:4;18950:8;18960:5;18904:27;:62::i;:::-;18461:511;;;;;:::o;40702:703::-;40860:7;40901:1;40884:14;:18;40876:53;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40968:14;40957:8;;:25;40944:9;:38;;40936:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41016:9;;;;;;;;;;;:14;;41037:9;41016:35;;;;;;;;;;;;;;;;;;;;;;;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;;41016:35:0;;41058:11;41072:17;:15;:17::i;:::-;41058:31;;41096:23;:21;:23::i;:::-;41142:10;41126:8;:13;41135:3;41126:13;;;;;;;;;;;;:26;;;;;;;;;;;;;;;;;;41186:1;41171:4;;41165:18;;:22;41161:64;;;41213:3;41203:14;41207:4;;41203:14;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;93:3;85:6;81:16;74:27;137:4;133:9;126:4;121:3;117:14;113:30;106:37;;169:3;161:6;157:16;147:26;;41203:14:0;;;;;;;;;;;;;;41161:64;41233:45;41239:10;41251:3;41256:14;41272:5;;41233:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;93:3;85:6;81:16;74:27;137:4;133:9;126:4;121:3;117:14;113:30;106:37;;169:3;161:6;157:16;147:26;;41233:45:0;;;;;;:5;:45::i;:::-;41306:14;41287:11;:16;41299:3;41287:16;;;;;;;;;;;:33;;;;41332:50;41343:3;41348:14;41364:5;;41371:10;41332:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;93:3;85:6;81:16;74:27;137:4;133:9;126:4;121:3;117:14;113:30;106:37;;169:3;161:6;157:16;147:26;;41332:50:0;;;;;;;;;;;;;;;;;41396:3;41389:10;;;40702:703;;;;;;;;;:::o;43332:659::-;43439:6;43447:7;36779;36750:8;:20;36759:10;36750:20;;;;;;;;;;;;;;;:25;36771:3;36750:25;;;;;;;;;;;;:36;;36742:96;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43490:7;43472:15;:25;43464:57;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43571:7;43557:10;43538:15;:30;:40;43530:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43629:1;43620:6;:10;43612:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43673:6;43682:1;43673:10;;43669:315;43689:7;43685:1;:11;43669:315;;;43713:58;43730:10;43750:4;43757:6;43765:1;43713:58;;;;;;;;;;;;:16;:58::i;:::-;43810:60;;;;;;;;43822:10;43810:60;;;;;;43842:1;43810:60;;;;;;43846:6;43810:60;;;;43854:7;43810:60;;;;43863:6;43810:60;;;43782:11;:25;43794:12;;43782:25;;;;;;;;;;;:88;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43886:63;43899:10;43911:6;43919;43927:12;;43941:7;43886:63;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43960:12;;:14;;;;;;;;;;;;;43698:3;;;;;;;43669:315;;;;43332:659;;;;;;:::o;43999:625::-;44089:15;44060:11;:19;44072:6;44060:19;;;;;;;;;;;:26;;;:44;44052:53;;;;;;44169:9;44148:17;44122:11;:19;44134:6;44122:19;;;;;;;;;;;:23;;;:43;:56;;44114:65;;;;;;44210:11;:19;44222:6;44210:19;;;;;;;;;;;:25;;;;;;;;;;;;44196:39;;:10;:39;;;;44188:48;;;;;;44267:11;:19;44279:6;44267:19;;;;;;;;;;;:30;;;;;;;;;;;;44253:44;;:10;:44;;;;44245:53;;;;;;44352:1;44310:44;;:11;:19;44322:6;44310:19;;;;;;;;;;;:30;;;;;;;;;;;;:44;;;44307:139;;44366:11;:19;44378:6;44366:19;;;;;;;;;;;:30;;;;;;;;;;;;:35;;44408:11;:19;44420:6;44408:19;;;;;;;;;;;:23;;;44366:70;;;;;;;;;;;;;;;;;;;;;;;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;;44366:70:0;;44307:139;44480:9;44454:11;:19;44466:6;44454:19;;;;;;;;;;;:23;;:35;;;;44531:10;44498:11;:19;44510:6;44498:19;;;;;;;;;;;:30;;;:43;;;;;;;;;;;;;;;;;;44555:61;44559:10;44571:11;:19;44583:6;44571:19;;;;;;;;;;;:25;;;44598:6;44606:9;44555:61;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43999:625;:::o;41483:520::-;41600:5;41592:13;;:4;;;;;;;;;;;:13;;;41584:40;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41638:11;;;;;;;;;;;41631:32;;;41664:10;41684:1;41688:11;41631:69;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;41631:69:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;41631:69:0;;;;41707:11;41721:17;:15;:17::i;:::-;41707:31;;41745:23;:21;:23::i;:::-;41791:10;41775:8;:13;41784:3;41775:13;;;;;;;;;;;;:26;;;;;;;;;;;;;;;;;;41835:1;41820:4;;41814:18;;:22;41810:64;;;41862:3;41852:14;41856:4;;41852:14;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;93:3;85:6;81:16;74:27;137:4;133:9;126:4;121:3;117:14;113:30;106:37;;169:3;161:6;157:16;147:26;;41852:14:0;;;;;;;;;;;;;;41810:64;41880:32;41886:10;41898:3;41903:1;41906:5;;41880:32;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;93:3;85:6;81:16;74:27;137:4;133:9;126:4;121:3;117:14;113:30;106:37;;169:3;161:6;157:16;147:26;;41880:32:0;;;;;;:5;:32::i;:::-;41938:1;41919:11;:16;41931:3;41919:16;;;;;;;;;;;:20;;;;41951:46;41962:3;41967:1;41986:10;41951:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41483:520;;;;;;:::o;23747:500::-;23846:16;23900:4;:11;23882:7;:14;:29;23874:86;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23987:30;24034:7;:14;24020:29;;;;;;;;;;;;;;;;;;;;;;29:2:-1;21:6;17:15;117:4;105:10;97:6;88:34;148:4;140:6;136:17;126:27;;0:157;24020:29:0;;;;23987:62;;24108:9;24120:1;24108:13;;24103:110;24127:7;:14;24123:1;:18;24103:110;;;24176:8;:20;24185:7;24193:1;24185:10;;;;;;;;;;;;;;24176:20;;;;;;;;;;;;;;;:29;24197:4;24202:1;24197:7;;;;;;;;;;;;;;24176:29;;;;;;;;;;;;24157:13;24171:1;24157:16;;;;;;;;;;;;;:48;;;;;24143:3;;;;;;;24103:110;;;;24228:13;24221:20;;;23747:500;;;;:::o;42787:50::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;1465:140::-;964:9;:7;:9::i;:::-;956:18;;;;;;1564:1;1527:40;;1548:6;;;;;;;;;;;1527:40;;;;;;;;;;;;1595:1;1578:6;;:19;;;;;;;;;;;;;;;;;;1465:140::o;38028:143::-;36964:5;;;;;;;;;;;36950:19;;:10;:19;;;36942:78;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38125:40;38145:19;38125;:40::i;:::-;38028:143;:::o;752:79::-;790:7;817:6;;;;;;;;;;;810:13;;752:79;:::o;1087:92::-;1127:4;1165:6;;;;;;;;;;;1151:20;;:10;:20;;;1144:27;;1087:92;:::o;36351:20::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;41411:66::-;36964:5;;;;;;;;;;;36950:19;;:10;:19;;;36942:78;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41467:4;;;;;;;;;;;41466:5;41459:4;;:12;;;;;;;;;;;;;;;;;;41411:66::o;22338:227::-;22490:9;22455;:21;22465:10;22455:21;;;;;;;;;;;;;;;:32;22477:9;22455:32;;;;;;;;;;;;;;;;:44;;;;;;;;;;;;;;;;;;22538:9;22511:48;;22526:10;22511:48;;;22549:9;22511:48;;;;;;;;;;;;;;;;;;;;;;22338:227;;:::o;43078:96::-;36964:5;;;;;;;;;;;36950:19;;:10;:19;;;36942:78;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43157:9;43146:8;:20;;;;43078:96;:::o;45970:1060::-;46063:15;46034:11;:19;46046:6;46034:19;;;;;;;;;;;:26;;;:44;46026:76;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46146:1;46119:11;:19;46131:6;46119:19;;;;;;;;;;;:23;;;:28;;46111:58;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46223:1;46181:44;;:11;:19;46193:6;46181:19;;;;;;;;;;;:30;;;;;;;;;;;;:44;;;46178:757;;46237:4;:21;;;46267:4;46274:11;:19;46286:6;46274:19;;;;;;;;;;;:30;;;;;;;;;;;;46306:11;:19;46318:6;46306:19;;;;;;;;;;;:25;;;46333:1;46237:102;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;46237:102:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;46237:102:0;;;;46350:11;46403:4;46390:10;;46364:11;:19;46376:6;46364:19;;;;;;;;;;;:23;;;:36;:43;;;;;;46350:57;;46418:9;;;;;;;;;;;:14;;46439:3;46418:29;;;;;;;;;;;;;;;;;;;;;;;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;;46418:29:0;;46458:11;:19;46470:6;46458:19;;;;;;;;;;;:25;;;;;;;;;;;;:30;;46495:32;46523:3;46495:11;:19;46507:6;46495:19;;;;;;;;;;;:23;;;:27;;:32;;;;:::i;:::-;46458:74;;;;;;;;;;;;;;;;;;;;;;;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;;46458:74:0;;46548:129;46559:11;:19;46571:6;46559:19;;;;;;;;;;;:25;;;46586:11;:19;46598:6;46586:19;;;;;;;;;;;:23;;;46611:11;:19;46623:6;46611:19;;;;;;;;;;;:25;;;;;;;;;;;;46638:11;:19;46650:6;46638:19;;;;;;;;;;;:30;;;;;;;;;;;;46670:6;46548:129;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46178:757;;;;46710:4;:21;;;46740:4;46747:11;:19;46759:6;46747:19;;;;;;;;;;;:25;;;;;;;;;;;;46774:11;:19;46786:6;46774:19;;;;;;;;;;;:25;;;46801:1;46710:97;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;46710:97:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;46710:97:0;;;;46823:102;46834:11;:19;46846:6;46834:19;;;;;;;;;;;:25;;;46861:1;46864:11;:19;46876:6;46864:19;;;;;;;;;;;:25;;;;;;;;;;;;46891:11;:19;46903:6;46891:19;;;;;;;;;;;:25;;;;;;;;;;;;46918:6;46823:102;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46178:757;46984:1;46943:11;:19;46955:6;46943:19;;;;;;;;;;;:30;;;:43;;;;;;;;;;;;;;;;;;47021:1;46995:11;:19;47007:6;46995:19;;;;;;;;;;;:23;;:27;;;;45970:1060;:::o;37786:110::-;37851:7;37874:11;:16;37886:3;37874:16;;;;;;;;;;;;37867:23;;37786:110;;;:::o;36185:44::-;;;;;;;;;;;;;;;;;;;;;;:::o;38352:279::-;38460:1;38445:17;;:3;:17;;;;38437:74;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38523:9;38535:1;38523:13;;38518:108;38542:4;:11;38538:1;:15;38518:108;;;38569:10;38582:4;38587:1;38582:7;;;;;;;;;;;;;;38569:20;;38598;38610:3;38615:2;38598:11;:20::i;:::-;38518:108;38555:3;;;;;;;38518:108;;;;38352:279;;:::o;44632:766::-;44722:15;44693:11;:19;44705:6;44693:19;;;;;;;;;;;:26;;;:44;44685:53;;;;;;44782:9;44755:11;:19;44767:6;44755:19;;;;;;;;;;;:23;;;:36;;44747:45;;;;;;44823:11;:19;44835:6;44823:19;;;;;;;;;;;:30;;;;;;;;;;;;44809:44;;44817:1;44809:44;;;44801:53;;;;;;44897:1;44871:11;:19;44883:6;44871:19;;;;;;;;;;;:23;;;:27;44863:36;;;;;;44908:4;:21;;;44938:4;44945:10;44957:11;:19;44969:6;44957:19;;;;;;;;;;;:25;;;44984:1;44908:82;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;44908:82:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;44908:82:0;;;;44999:11;45052:4;45039:10;;45013:11;:19;45025:6;45013:19;;;;;;;;;;;:23;;;:36;:43;;;;;;44999:57;;45065:9;;;;;;;;;;;:14;;45086:3;45065:29;;;;;;;;;;;;;;;;;;;;;;;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;;45065:29:0;;45103:11;:19;45115:6;45103:19;;;;;;;;;;;:25;;;;;;;;;;;;:30;;45140:32;45168:3;45140:11;:19;45152:6;45140:19;;;;;;;;;;;:23;;;:27;;:32;;;;:::i;:::-;45103:74;;;;;;;;;;;;;;;;;;;;;;;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;;45103:74:0;;45191:109;45202:11;:19;45214:6;45202:19;;;;;;;;;;;:25;;;45229:11;:19;45241:6;45229:19;;;;;;;;;;;:23;;;45254:11;:19;45266:6;45254:19;;;;;;;;;;;:25;;;;;;;;;;;;45281:10;45293:6;45191:109;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45344:10;45311:11;:19;45323:6;45311:19;;;;;;;;;;;:30;;;:43;;;;;;;;;;;;;;;;;;45389:1;45363:11;:19;45375:6;45363:19;;;;;;;;;;;:23;;:27;;;;44632:766;;:::o;38755:469::-;38852:15;38935:27;38979:20;;;;;;;;;;;38935:65;;39053:9;39011:51;;39019:13;:21;;;39041:6;39019:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;39019:29:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;39019:29:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;39019:29:0;;;;;;;;;;;;;;;;39011:51;;;39007:85;;;39080:4;39073:11;;;;;39007:85;39121:9;39104:26;;39112:4;39104:26;;;39100:60;;;39148:4;39141:11;;;;;39100:60;39175:43;39200:6;39208:9;39175:24;:43::i;:::-;39168:50;;;38755:469;;;;;:::o;17523:545::-;17672:5;17658:19;;:10;:19;;;17657:60;;;;17682:35;17699:5;17706:10;17682:16;:35::i;:::-;17657:60;17649:115;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17794:1;17779:17;;:3;:17;;;;17771:72;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17957:43;17975:5;17982:3;17987;17992:7;17957:17;:43::i;:::-;18007:55;18030:5;18037:3;18042;18047:7;18056:5;18007:22;:55::i;:::-;17523:545;;;;;:::o;1782:109::-;964:9;:7;:9::i;:::-;956:18;;;;;;1855:28;1874:8;1855:18;:28::i;:::-;1782:109;:::o;45406:556::-;45514:11;:19;45526:6;45514:19;;;;;;;;;;;:25;;;;;;;;;;;;45500:39;;:10;:39;;;45492:78;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45601:11;:19;45613:6;45601:19;;;;;;;;;;;:30;;;;;;;;;;;;45587:44;;45595:1;45587:44;;;45579:82;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45707:15;45678:11;:19;45690:6;45678:19;;;;;;;;;;;:26;;;:44;45670:81;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45778:15;45768:7;:25;45760:57;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45855:7;45826:11;:19;45838:6;45826:19;;;;;;;;;;;:26;;:36;;;;45897:6;45871:11;:19;45883:6;45871:19;;;;;;;;;;;:23;;:32;;;;45917:37;45930:6;45938:7;45947:6;45917:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45406:556;;;:::o;43182:142::-;36964:5;;;;;;;;;;;36950:19;;:10;:19;;;36942:78;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43265:4;43255:7;:14;43247:40;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43309:7;43296:10;:20;;;;43182:142;:::o;39735:116::-;39798:4;39843:1;39818:27;;:8;:13;39827:3;39818:13;;;;;;;;;;;;;;;;;;;;;:27;;;;39811:34;;39735:116;;;:::o;33978:482::-;34028:27;34078:1;34072:2;:7;34068:50;;;34096:10;;;;;;;;;;;;;;;;;;;;;34068:50;34128:6;34137:2;34128:11;;34150:8;34169:69;34181:1;34176;:6;34169:69;;34199:5;;;;;;;34224:2;34219:7;;;;;;;;;34169:69;;;34248:17;34278:3;34268:14;;;;;;;;;;;;;;;;;;;;;;;;;29:1:-1;21:6;17:14;116:4;104:10;96:6;87:34;147:4;139:6;135:17;125:27;;0:156;34268:14:0;;;;34248:34;;34293:6;34308:1;34302:3;:7;34293:16;;34320:103;34333:1;34327:2;:7;34320:103;;34384:2;34379;:7;;;;;;34374:2;:12;34363:25;;34351:4;34356:3;;;;;;;34351:9;;;;;;;;;;;:37;;;;;;;;;;;34409:2;34403:8;;;;;;;;;34320:103;;;34447:4;34433:19;;;;;;33978:482;;;;:::o;33822:148::-;33900:13;33933:29;33943:2;33947;33933:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:9;:29::i;:::-;33926:36;;33822:148;;;;:::o;20624:687::-;20781:8;:15;20766:4;:11;:30;20758:96;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20901:17;20921:4;:11;20901:31;;20978:9;20990:1;20978:13;;20973:247;20997:9;20993:1;:13;20973:247;;;21098:41;21127:8;21136:1;21127:11;;;;;;;;;;;;;;21098:8;:15;21107:5;21098:15;;;;;;;;;;;;;;;:24;21114:4;21119:1;21114:7;;;;;;;;;;;;;;21098:24;;;;;;;;;;;;:28;;:41;;;;:::i;:::-;21071:8;:15;21080:5;21071:15;;;;;;;;;;;;;;;:24;21087:4;21092:1;21087:7;;;;;;;;;;;;;;21071:24;;;;;;;;;;;:68;;;;21173:39;21200:8;21209:1;21200:11;;;;;;;;;;;;;;21173:8;:13;21182:3;21173:13;;;;;;;;;;;;;;;:22;21187:4;21192:1;21187:7;;;;;;;;;;;;;;21173:22;;;;;;;;;;;;:26;;:39;;;;:::i;:::-;21148:8;:13;21157:3;21148:13;;;;;;;;;;;;;;;:22;21162:4;21167:1;21162:7;;;;;;;;;;;;;;21148:22;;;;;;;;;;;:64;;;;21008:3;;;;;;;20973:247;;;;21285:3;21252:53;;21278:5;21252:53;;21266:10;21252:53;;;21290:4;21296:8;21252:53;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;21252:53:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;21252:53:0;;;;;;;;;;;;;;;;;;;20624:687;;;;;:::o;21429:500::-;21635:16;:3;:14;;;:16::i;:::-;:40;;;;;21670:4;21655:20;;:3;:20;;;;21635:40;21631:293;;;21686:13;21724:3;21702:49;;;21752:10;21764:5;21771:4;21777:8;21787:5;21702:91;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;21702:91:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;21702:91:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;21702:91:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;21702:91:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;21702:91:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;21702:91:0;;;;;;;;;;;;;;;;21686:107;;16418:10;21820:28;;21810:38;;;:6;:38;;;;21802:114;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21631:293;;21429:500;;;;;:::o;39992:100::-;40041:7;40064:22;40084:1;40064:15;;:19;;:22;;;;:::i;:::-;40057:29;;39992:100;:::o;40165:72::-;40214:15;;:17;;;;;;;;;;;;;40165:72::o;29528:401::-;29671:31;29694:7;29671:8;:13;29680:3;29671:13;;;;;;;;;;;;;;;:18;29685:3;29671:18;;;;;;;;;;;;:22;;:31;;;;:::i;:::-;29650:8;:13;29659:3;29650:13;;;;;;;;;;;;;;;:18;29664:3;29650:18;;;;;;;;;;;:52;;;;29776:3;29735:59;;29770:3;29735:59;;29750:10;29735:59;;;29781:3;29786:7;29735:59;;;;;;;;;;;;;;;;;;;;;;;;29861:62;29892:3;29898;29903;29908:7;29917:5;29861:22;:62::i;:::-;29528:401;;;;:::o;27889:123::-;27987:19;27969:15;:37;;;;;;;;;;;;:::i;:::-;;27889:123;:::o;4113:163::-;4171:7;4200:1;4195;:6;;4187:42;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4236:9;4252:1;4248;:5;4236:17;;4269:1;4262:8;;;4113:163;;;;:::o;39397:110::-;39465:3;36522:10;36505:27;;:8;:13;36514:3;36505:13;;;;;;;;;;;;;;;;;;;;;:27;;;36497:89;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39498:3;39482:8;:13;39491:3;39482:13;;;;;;;;;;;;:19;;;;;;;;;;;;;;;;;;39397:110;;;:::o;22824:155::-;22911:15;22945:9;:17;22955:6;22945:17;;;;;;;;;;;;;;;:28;22963:9;22945:28;;;;;;;;;;;;;;;;;;;;;;;;;22938:35;;22824:155;;;;:::o;19376:376::-;19532:33;19557:7;19532:8;:15;19541:5;19532:15;;;;;;;;;;;;;;;:20;19548:3;19532:20;;;;;;;;;;;;:24;;:33;;;;:::i;:::-;19509:8;:15;19518:5;19509:15;;;;;;;;;;;;;;;:20;19525:3;19509:20;;;;;;;;;;;:56;;;;19612:31;19635:7;19612:8;:13;19621:3;19612:13;;;;;;;;;;;;;;;:18;19626:3;19612:18;;;;;;;;;;;;:22;;:31;;;;:::i;:::-;19591:8;:13;19600:3;19591:13;;;;;;;;;;;;;;;:18;19605:3;19591:18;;;;;;;;;;;:52;;;;19728:3;19694:52;;19721:5;19694:52;;19709:10;19694:52;;;19733:3;19738:7;19694:52;;;;;;;;;;;;;;;;;;;;;;;;19376:376;;;;:::o;19865:453::-;20042:16;:3;:14;;;:16::i;:::-;:40;;;;;20077:4;20062:20;;:3;:20;;;;20042:40;20038:275;;;20093:13;20131:3;20109:44;;;20154:10;20166:5;20173:3;20178:7;20187:5;20109:84;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;20109:84:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;20109:84:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;20109:84:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;20109:84:0;;;;;;;;;;;;;;;;20093:100;;16347:10;20220:22;;20210:32;;;:6;:32;;;;20202:103;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20038:275;;19865:453;;;;;:::o;2041:187::-;2135:1;2115:22;;:8;:22;;;;2107:31;;;;;;2183:8;2154:38;;2175:6;;;;;;;;;;;2154:38;;;;;;;;;;;;2212:8;2203:6;;:17;;;;;;;;;;;;;;;;;;2041:187;:::o;32576:872::-;32708:13;32732:16;32757:2;32732:28;;32769:16;32794:2;32769:28;;32806:16;32831:2;32806:28;;32843:16;32868:2;32843:28;;32880:16;32905:2;32880:28;;32917:19;33002:3;:10;32989:3;:10;32976:3;:10;32963:3;:10;32950:3;:10;:23;:36;:49;:62;32939:74;;;;;;;;;;;;;;;;;;;;;;;;;29:1:-1;21:6;17:14;116:4;104:10;96:6;87:34;147:4;139:6;135:17;125:27;;0:156;32939:74:0;;;;32917:96;;33022:19;33050:5;33022:34;;33065:6;33074:1;33065:10;;33089:6;33098:1;33089:10;;33084:58;33105:3;:10;33101:1;:14;33084:58;;;33136:3;33140:1;33136:6;;;;;;;;;;;;;;;;33122;33129:3;;;;;;33122:11;;;;;;;;;;;:20;;;;;;;;;;;33117:3;;;;;;;33084:58;;;;33156:6;33165:1;33156:10;;33151:58;33172:3;:10;33168:1;:14;33151:58;;;33203:3;33207:1;33203:6;;;;;;;;;;;;;;;;33189;33196:3;;;;;;33189:11;;;;;;;;;;;:20;;;;;;;;;;;33184:3;;;;;;;33151:58;;;;33223:6;33232:1;33223:10;;33218:58;33239:3;:10;33235:1;:14;33218:58;;;33270:3;33274:1;33270:6;;;;;;;;;;;;;;;;33256;33263:3;;;;;;33256:11;;;;;;;;;;;:20;;;;;;;;;;;33251:3;;;;;;;33218:58;;;;33290:6;33299:1;33290:10;;33285:58;33306:3;:10;33302:1;:14;33285:58;;;33337:3;33341:1;33337:6;;;;;;;;;;;;;;;;33323;33330:3;;;;;;33323:11;;;;;;;;;;;:20;;;;;;;;;;;33318:3;;;;;;;33285:58;;;;33357:6;33366:1;33357:10;;33352:58;33373:3;:10;33369:1;:14;33352:58;;;33404:3;33408:1;33404:6;;;;;;;;;;;;;;;;33390;33397:3;;;;;;33390:11;;;;;;;;;;;:20;;;;;;;;;;;33385:3;;;;;;;33352:58;;;;33433:6;33419:21;;;;;;;;;;32576:872;;;;;;;:::o;4356:162::-;4414:7;4430:9;4446:1;4442;:5;4430:17;;4467:1;4462;:6;;4454:41;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4511:1;4504:8;;;4356:162;;;;:::o;15179:673::-;15239:4;15252:16;15275:19;15297:66;15275:88;;;;15779:7;15767:20;15755:32;;15815:3;15803:15;;:8;:15;;:42;;;;;15834:11;15822:8;:23;;15803:42;15795:51;;;;15179:673;;;:::o;42105:4932::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o

Swarm Source

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