ERC-1155
Overview
Max Total Supply
905 DMC
Holders
117
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
DarkMatterCollectible
Compiler Version
v0.6.2+commit.bacdbe57
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2020-10-31 */ pragma solidity >=0.5.0; /* * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with GSN meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ contract Context { // Empty internal constructor, to prevent people from mistakenly deploying // an instance of this contract, which should be used via inheritance. constructor () public { } // solhint-disable-previous-line no-empty-blocks function _msgSender() internal view returns (address payable) { return msg.sender; } function _msgData() internal view returns (bytes memory) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } } /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor () public { address msgSender = _msgSender(); _owner = msgSender; emit OwnershipTransferred(address(0), msgSender); } /** * @dev Returns the address of the current owner. */ function owner() public view returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(isOwner(), "Ownable: caller is not the owner"); _; } /** * @dev Returns true if the caller is the current owner. */ function isOwner() public view returns (bool) { return _msgSender() == _owner; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public onlyOwner { emit OwnershipTransferred(_owner, address(0)); _owner = address(0); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public onlyOwner { _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). */ function _transferOwnership(address newOwner) internal { require(newOwner != address(0), "Ownable: new owner is the zero address"); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } } /** * @title Roles * @dev Library for managing addresses assigned to a Role. */ library Roles { struct Role { mapping (address => bool) bearer; } /** * @dev Give an account access to this role. */ function add(Role storage role, address account) internal { require(!has(role, account), "Roles: account already has role"); role.bearer[account] = true; } /** * @dev Remove an account's access to this role. */ function remove(Role storage role, address account) internal { require(has(role, account), "Roles: account does not have role"); role.bearer[account] = false; } /** * @dev Check if an account has this role. * @return bool */ function has(Role storage role, address account) internal view returns (bool) { require(account != address(0), "Roles: account is the zero address"); return role.bearer[account]; } } contract MinterRole is Context { using Roles for Roles.Role; event MinterAdded(address indexed account); event MinterRemoved(address indexed account); Roles.Role private _minters; constructor () public { _addMinter(_msgSender()); } modifier onlyMinter() { require(isMinter(_msgSender()), "MinterRole: caller does not have the Minter role"); _; } function isMinter(address account) public view returns (bool) { return _minters.has(account); } function addMinter(address account) public onlyMinter { _addMinter(account); } function renounceMinter() public { _removeMinter(_msgSender()); } function _addMinter(address account) internal { _minters.add(account); emit MinterAdded(account); } function _removeMinter(address account) internal { _minters.remove(account); emit MinterRemoved(account); } } /** * @title WhitelistAdminRole * @dev WhitelistAdmins are responsible for assigning and removing Whitelisted accounts. */ contract WhitelistAdminRole is Context { using Roles for Roles.Role; event WhitelistAdminAdded(address indexed account); event WhitelistAdminRemoved(address indexed account); Roles.Role private _whitelistAdmins; constructor () public { _addWhitelistAdmin(_msgSender()); } modifier onlyWhitelistAdmin() { require(isWhitelistAdmin(_msgSender()), "WhitelistAdminRole: caller does not have the WhitelistAdmin role"); _; } function isWhitelistAdmin(address account) public view returns (bool) { return _whitelistAdmins.has(account); } function addWhitelistAdmin(address account) public onlyWhitelistAdmin { _addWhitelistAdmin(account); } function renounceWhitelistAdmin() public { _removeWhitelistAdmin(_msgSender()); } function _addWhitelistAdmin(address account) internal { _whitelistAdmins.add(account); emit WhitelistAdminAdded(account); } function _removeWhitelistAdmin(address account) internal { _whitelistAdmins.remove(account); emit WhitelistAdminRemoved(account); } } /** * @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); } /** * @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; } } /** * @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); } 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 */ function isApprovedForAll(address _owner, address _operator) external view returns (bool isOperator); } /** * 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. */ /** * 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); } } /** * @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()) { 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()) { 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 */ function isApprovedForAll(address _owner, address _operator) virtual 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 | |__________________________________*/ bytes4 constant private INTERFACE_SIGNATURE_ERC165 = 0x01ffc9a7; 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) override external view returns (bool) { if (_interfaceID == INTERFACE_SIGNATURE_ERC165 || _interfaceID == INTERFACE_SIGNATURE_ERC1155) { return true; } return false; } } /** * @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) virtual 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); } } /** * @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); } } 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); uint256 k = 0; for (uint256 i = 0; i < _ba.length; i++) babcde[k++] = _ba[i]; for (uint256 i = 0; i < _bb.length; i++) babcde[k++] = _bb[i]; for (uint256 i = 0; i < _bc.length; i++) babcde[k++] = _bc[i]; for (uint256 i = 0; i < _bd.length; i++) babcde[k++] = _bd[i]; for (uint256 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(uint256 _i) internal pure returns (string memory _uintAsString) { if (_i == 0) { return "0"; } uint256 j = _i; uint256 len; while (j != 0) { len++; j /= 10; } bytes memory bstr = new bytes(len); uint256 k = len - 1; while (_i != 0) { bstr[k--] = bytes1(uint8(48 + (_i % 10))); _i /= 10; } return string(bstr); } } contract OwnableDelegateProxy {} contract ProxyRegistry { mapping(address => OwnableDelegateProxy) public proxies; } /** * @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, MinterRole, WhitelistAdminRole { using Strings for string; address proxyRegistryAddress; uint256 private _currentTokenID = 0; mapping(uint256 => address) public creators; mapping(uint256 => uint256) public tokenSupply; mapping(uint256 => uint256) public tokenMaxSupply; // Contract name string public name; // Contract symbol string public symbol; constructor( string memory _name, string memory _symbol, address _proxyRegistryAddress ) public { name = _name; symbol = _symbol; proxyRegistryAddress = _proxyRegistryAddress; } function removeWhitelistAdmin(address account) public onlyOwner { _removeWhitelistAdmin(account); } function removeMinter(address account) public onlyOwner { _removeMinter(account); } function uri(uint256 _id) override 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 Returns the max quantity for a token ID * @param _id uint256 ID of the token to query * @return amount of token in existence */ function maxSupply(uint256 _id) public view returns (uint256) { return tokenMaxSupply[_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 onlyWhitelistAdmin { _setBaseMetadataURI(_newBaseMetadataURI); } /** * @dev Creates a new token type and assigns _initialSupply to an address * @param _maxSupply max supply allowed * @param _initialSupply Optional amount to supply the first owner * @param _uri Optional URI for this token type * @param _data Optional data to pass if receiver is contract */ function create( uint256 _maxSupply, uint256 _initialSupply, string calldata _uri, bytes calldata _data ) external onlyWhitelistAdmin returns (uint256 tokenId) { require(_initialSupply <= _maxSupply, "Initial supply cannot be more than max supply"); uint256 _id = _getNextTokenID(); _incrementTokenTypeId(); creators[_id] = msg.sender; if (bytes(_uri).length > 0) { emit URI(_uri, _id); } if (_initialSupply != 0) _mint(msg.sender, _id, _initialSupply, _data); tokenSupply[_id] = _initialSupply; tokenMaxSupply[_id] = _maxSupply; return _id; } /** * @dev Mints some amount of tokens to an address * @param _to Address of the future owner of the token * @param _id Token ID to mint * @param _quantity Amount of tokens to mint * @param _data Data to pass if receiver is contract */ function mint( address _to, uint256 _id, uint256 _quantity, bytes memory _data ) public onlyMinter { uint256 tokenId = _id; require(tokenSupply[tokenId] < tokenMaxSupply[tokenId], "Max supply reached"); _mint(_to, _id, _quantity, _data); tokenSupply[_id] = tokenSupply[_id].add(_quantity); } /** * Override isApprovedForAll to whitelist user's OpenSea proxy accounts to enable gas-free listings. */ function isApprovedForAll(address _owner, address _operator) override public view returns (bool isOperator) { // Whitelist OpenSea proxy contract for easy trading. ProxyRegistry proxyRegistry = ProxyRegistry(proxyRegistryAddress); if (address(proxyRegistry.proxies(_owner)) == _operator) { return true; } return ERC1155.isApprovedForAll(_owner, _operator); } /** * @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++; } } /** * @title DMT * DMT - Collect limited edition NFTs from Dark Matter Token */ contract DarkMatterCollectible is ERC1155Tradable { constructor(address _proxyRegistryAddress) public ERC1155Tradable("Dark Matter Collectible", "DMC", _proxyRegistryAddress) { _setBaseMetadataURI("https://darkmatter.finance/api/nft/"); } function contractURI() public pure returns (string memory) { return "https://darkmatter.finance/api/contract/dmt-erc1155"; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"_proxyRegistryAddress","type":"address"}],"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":true,"internalType":"address","name":"account","type":"address"}],"name":"MinterAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"}],"name":"MinterRemoved","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"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"}],"name":"WhitelistAdminAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"}],"name":"WhitelistAdminRemoved","type":"event"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"addMinter","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"addWhitelistAdmin","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"},{"internalType":"uint256","name":"_id","type":"uint256"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_owners","type":"address[]"},{"internalType":"uint256[]","name":"_ids","type":"uint256[]"}],"name":"balanceOfBatch","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxSupply","type":"uint256"},{"internalType":"uint256","name":"_initialSupply","type":"uint256"},{"internalType":"string","name":"_uri","type":"string"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"create","outputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"creators","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"},{"internalType":"address","name":"_operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"isOperator","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isMinter","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isOwner","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isWhitelistAdmin","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_id","type":"uint256"}],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_id","type":"uint256"},{"internalType":"uint256","name":"_quantity","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"removeMinter","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"removeWhitelistAdmin","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceMinter","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceWhitelistAdmin","outputs":[],"stateMutability":"nonpayable","type":"function"},{"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":[],"stateMutability":"nonpayable","type":"function"},{"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":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_operator","type":"address"},{"internalType":"bool","name":"_approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseMetadataURI","type":"string"}],"name":"setBaseMetadataURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"_interfaceID","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"tokenMaxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"tokenSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_id","type":"uint256"}],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_id","type":"uint256"}],"name":"uri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
608060405260006007553480156200001657600080fd5b506040516200452538038062004525833981810160405260208110156200003c57600080fd5b81019080805190602001909291905050506040518060400160405280601781526020017f4461726b204d617474657220436f6c6c65637469626c650000000000000000008152506040518060400160405280600381526020017f444d430000000000000000000000000000000000000000000000000000000000815250826000620000cc6200025260201b60201c565b905080600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3506200018b6200017f6200025260201b60201c565b6200025a60201b60201c565b620001ab6200019f6200025260201b60201c565b620002bb60201b60201c565b82600b9080519060200190620001c3929190620004fc565b5081600c9080519060200190620001dc929190620004fc565b5080600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050506200024b60405180606001604052806023815260200162004502602391396200031c60201b60201c565b50620005ab565b600033905090565b620002758160046200033860201b62003a831790919060201c565b8073ffffffffffffffffffffffffffffffffffffffff167f6ae172837ea30b801fbfcdd4108aa1d5bf8ff775444fd70256b44e6bf3dfc3f660405160405180910390a250565b620002d68160056200033860201b62003a831790919060201c565b8073ffffffffffffffffffffffffffffffffffffffff167f22380c05984257a1cb900161c713dd71d39e74820f1aea43bd3f1bdd2096129960405160405180910390a250565b806002908051906020019062000334929190620004fc565b5050565b6200034a82826200041c60201b60201c565b15620003be576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f526f6c65733a206163636f756e7420616c72656164792068617320726f6c650081525060200191505060405180910390fd5b60018260000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415620004a5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526022815260200180620044e06022913960400191505060405180910390fd5b8260000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200053f57805160ff191683800117855562000570565b8280016001018555821562000570579182015b828111156200056f57825182559160200191906001019062000552565b5b5090506200057f919062000583565b5090565b620005a891905b80821115620005a45760008160009055506001016200058a565b5090565b90565b613f2580620005bb6000396000f3fe608060405234801561001057600080fd5b50600436106101e35760003560e01c8063869f75941161010f578063b09ddf7b116100a2578063e8a3d48511610071578063e8a3d48514610ed8578063e985e9c514610f5b578063f242432a14610fd7578063f2fde38b146110e6576101e3565b8063b09ddf7b14610cd6578063bb5f747b14610dcc578063bd85b03914610e28578063cd53d08e14610e6a576101e3565b8063983b2d56116100de578063983b2d5614610bdc5780639865027514610c20578063a22cb46514610c2a578063aa271e1a14610c7a576101e3565b8063869f759414610aab5780638da5cb5b14610aed5780638f32d59b14610b3757806395d89b4114610b59576101e3565b80633092afd511610187578063715018a611610156578063715018a6146108b3578063731133e9146108bd5780637362d9c8146109ac5780637e518ec8146109f0576101e3565b80633092afd5146106805780634c5a628c146106c45780634e1273f4146106ce5780636897e9741461086f576101e3565b806306fdde03116101c357806306fdde03146102f15780630e89341c146103745780632693ebf21461041b5780632eb2c2d61461045d576101e3565b80624221f0146101e8578062fdd58e1461022a57806301ffc9a71461028c575b600080fd5b610214600480360360208110156101fe57600080fd5b810190808035906020019092919050505061112a565b6040518082815260200191505060405180910390f35b6102766004803603604081101561024057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611142565b6040518082815260200191505060405180910390f35b6102d7600480360360208110156102a257600080fd5b8101908080357bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916906020019092919050505061119c565b604051808215151515815260200191505060405180910390f35b6102f961124d565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561033957808201518184015260208101905061031e565b50505050905090810190601f1680156103665780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6103a06004803603602081101561038a57600080fd5b81019080803590602001909291905050506112eb565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156103e05780820151818401526020810190506103c5565b50505050905090810190601f16801561040d5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6104476004803603602081101561043157600080fd5b81019080803590602001909291905050506113fe565b6040518082815260200191505060405180910390f35b61067e600480360360a081101561047357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001906401000000008111156104d057600080fd5b8201836020820111156104e257600080fd5b8035906020019184602083028401116401000000008311171561050457600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f8201169050808301925050505050505091929192908035906020019064010000000081111561056457600080fd5b82018360208201111561057657600080fd5b8035906020019184602083028401116401000000008311171561059857600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f820116905080830192505050505050509192919290803590602001906401000000008111156105f857600080fd5b82018360208201111561060a57600080fd5b8035906020019184600183028401116401000000008311171561062c57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050509192919290505050611416565b005b6106c26004803603602081101561069657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611551565b005b6106cc6115d7565b005b610818600480360360408110156106e457600080fd5b810190808035906020019064010000000081111561070157600080fd5b82018360208201111561071357600080fd5b8035906020019184602083028401116401000000008311171561073557600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f8201169050808301925050505050505091929192908035906020019064010000000081111561079557600080fd5b8201836020820111156107a757600080fd5b803590602001918460208302840111640100000000831117156107c957600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f8201169050808301925050505050505091929192905050506115e9565b6040518080602001828103825283818151815260200191508051906020019060200280838360005b8381101561085b578082015181840152602081019050610840565b505050509050019250505060405180910390f35b6108b16004803603602081101561088557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061172f565b005b6108bb6117b5565b005b6109aa600480360360808110156108d357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190803590602001909291908035906020019064010000000081111561092457600080fd5b82018360208201111561093657600080fd5b8035906020019184600183028401116401000000008311171561095857600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f8201169050808301925050505050505091929192905050506118f0565b005b6109ee600480360360208110156109c257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611a45565b005b610aa960048036036020811015610a0657600080fd5b8101908080359060200190640100000000811115610a2357600080fd5b820183602082011115610a3557600080fd5b80359060200191846001830284011164010000000083111715610a5757600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050509192919290505050611ab6565b005b610ad760048036036020811015610ac157600080fd5b8101908080359060200190929190505050611b27565b6040518082815260200191505060405180910390f35b610af5611b44565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b610b3f611b6e565b604051808215151515815260200191505060405180910390f35b610b61611bcd565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610ba1578082015181840152602081019050610b86565b50505050905090810190601f168015610bce5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b610c1e60048036036020811015610bf257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611c6b565b005b610c28611cdc565b005b610c7860048036036040811015610c4057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803515159060200190929190505050611cee565b005b610cbc60048036036020811015610c9057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611def565b604051808215151515815260200191505060405180910390f35b610db660048036036080811015610cec57600080fd5b81019080803590602001909291908035906020019092919080359060200190640100000000811115610d1d57600080fd5b820183602082011115610d2f57600080fd5b80359060200191846001830284011164010000000083111715610d5157600080fd5b909192939192939080359060200190640100000000811115610d7257600080fd5b820183602082011115610d8457600080fd5b80359060200191846001830284011164010000000083111715610da657600080fd5b9091929391929390505050611e0c565b6040518082815260200191505060405180910390f35b610e0e60048036036020811015610de257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061203a565b604051808215151515815260200191505060405180910390f35b610e5460048036036020811015610e3e57600080fd5b8101908080359060200190929190505050612057565b6040518082815260200191505060405180910390f35b610e9660048036036020811015610e8057600080fd5b8101908080359060200190929190505050612074565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b610ee06120a7565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610f20578082015181840152602081019050610f05565b50505050905090810190601f168015610f4d5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b610fbd60048036036040811015610f7157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506120c7565b604051808215151515815260200191505060405180910390f35b6110e4600480360360a0811015610fed57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190803590602001909291908035906020019064010000000081111561105e57600080fd5b82018360208201111561107057600080fd5b8035906020019184600183028401116401000000008311171561109257600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f8201169050808301925050505050505091929192905050506121f8565b005b611128600480360360208110156110fc57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612333565b005b600a6020528060005260406000206000915090505481565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b60006301ffc9a760e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611235575063d9b67a2660e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b156112435760019050611248565b600090505b919050565b600b8054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156112e35780601f106112b8576101008083540402835291602001916112e3565b820191906000526020600020905b8154815290600101906020018083116112c657829003601f168201915b505050505081565b60606112f6826123b9565b61134b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526025815260200180613d686025913960400191505060405180910390fd5b6113f760028054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156113e45780601f106113b9576101008083540402835291602001916113e4565b820191906000526020600020905b8154815290600101906020018083116113c757829003601f168201915b50505050506113f284612425565b612552565b9050919050565b60096020528060005260406000206000915090505481565b8473ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161480611456575061145585336120c7565b5b6114ab576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602f815260200180613e48602f913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611531576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526030815260200180613d386030913960400191505060405180910390fd5b61153d85858585612596565b61154a85858585856128fb565b5050505050565b611559611b6e565b6115cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6115d481612bb6565b50565b6115e76115e2612c10565b612c18565b565b60608151835114611645576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c815260200180613e1c602c913960400191505060405180910390fd5b606083516040519080825280602002602001820160405280156116775781602001602082028038833980820191505090505b50905060008090505b84518110156117245760008086838151811061169857fe5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008583815181106116e857fe5b602002602001015181526020019081526020016000205482828151811061170b57fe5b6020026020010181815250508080600101915050611680565b508091505092915050565b611737611b6e565b6117a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6117b281612c18565b50565b6117bd611b6e565b61182f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6119006118fb612c10565b611def565b611955576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526030815260200180613ce76030913960400191505060405180910390fd5b6000839050600a6000828152602001908152602001600020546009600083815260200190815260200160002054106119f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260128152602001807f4d617820737570706c792072656163686564000000000000000000000000000081525060200191505060405180910390fd5b611a0185858585612c72565b611a27836009600087815260200190815260200160002054612dc090919063ffffffff16565b60096000868152602001908152602001600020819055505050505050565b611a55611a50612c10565b61203a565b611aaa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526040815260200180613ddc6040913960400191505060405180910390fd5b611ab381612e48565b50565b611ac6611ac1612c10565b61203a565b611b1b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526040815260200180613ddc6040913960400191505060405180910390fd5b611b2481612ea2565b50565b6000600a6000838152602001908152602001600020549050919050565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16611bb1612c10565b73ffffffffffffffffffffffffffffffffffffffff1614905090565b600c8054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015611c635780601f10611c3857610100808354040283529160200191611c63565b820191906000526020600020905b815481529060010190602001808311611c4657829003601f168201915b505050505081565b611c7b611c76612c10565b611def565b611cd0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526030815260200180613ce76030913960400191505060405180910390fd5b611cd981612ebc565b50565b611cec611ce7612c10565b612bb6565b565b80600160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051808215151515815260200191505060405180910390a35050565b6000611e05826004612f1690919063ffffffff16565b9050919050565b6000611e1e611e19612c10565b61203a565b611e73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526040815260200180613ddc6040913960400191505060405180910390fd5b86861115611ecc576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602d815260200180613d8d602d913960400191505060405180910390fd5b6000611ed6612ff4565b9050611ee0613011565b336008600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000868690501115611fa357807f6bb7ff708619ba0610cba295a58592e0451dee2622938c8755667688daf3529b878760405180806020018281038252848482818152602001925080828437600081840152601f19601f820116905080830192505050935050505060405180910390a25b60008714611ffc57611ffb33828987878080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f82011690508083019250505050505050612c72565b5b86600960008381526020019081526020016000208190555087600a600083815260200190815260200160002081905550809150509695505050505050565b6000612050826005612f1690919063ffffffff16565b9050919050565b600060096000838152602001908152602001600020549050919050565b60086020528060005260406000206000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6060604051806060016040528060338152602001613c0460339139905090565b600080600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508273ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1663c4552791866040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b15801561218357600080fd5b505afa158015612197573d6000803e3d6000fd5b505050506040513d60208110156121ad57600080fd5b810190808051906020019092919050505073ffffffffffffffffffffffffffffffffffffffff1614156121e45760019150506121f2565b6121ee8484613025565b9150505b92915050565b8473ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161480612238575061223785336120c7565b5b61228d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a815260200180613c88602a913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612313576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602b815260200180613c37602b913960400191505060405180910390fd5b61231f858585856130b9565b61232c85858585856132ad565b5050505050565b61233b611b6e565b6123ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6123b6816134e6565b50565b60008073ffffffffffffffffffffffffffffffffffffffff166008600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b6060600082141561246d576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061254d565b600082905060005b60008214612497578080600101915050600a828161248f57fe5b049150612475565b6060816040519080825280601f01601f1916602001820160405280156124cc5781602001600182028038833980820191505090505b50905060006001830390505b6000861461254557600a86816124ea57fe5b0660300160f81b8282806001900393508151811061250457fe5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a868161253d57fe5b0495506124d8565b819450505050505b919050565b606061258e838360405180602001604052806000815250604051806020016040528060008152506040518060200160405280600081525061362c565b905092915050565b80518251146125f0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526035815260200180613cb26035913960400191505060405180910390fd5b60008251905060008090505b818110156127ed5761268c83828151811061261357fe5b60200260200101516000808973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600087858151811061266757fe5b60200260200101518152602001908152602001600020546138f290919063ffffffff16565b6000808873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008684815181106126d857fe5b602002602001015181526020019081526020016000208190555061277a83828151811061270157fe5b60200260200101516000808873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600087858151811061275557fe5b6020026020010151815260200190815260200160002054612dc090919063ffffffff16565b6000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008684815181106127c657fe5b602002602001015181526020019081526020016000208190555080806001019150506125fc565b508373ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8686604051808060200180602001838103835285818151815260200191508051906020019060200280838360005b8381101561289d578082015181840152602081019050612882565b50505050905001838103825284818151815260200191508051906020019060200280838360005b838110156128df5780820151818401526020810190506128c4565b5050505090500194505050505060405180910390a45050505050565b61291a8473ffffffffffffffffffffffffffffffffffffffff1661397b565b15612baf5760008473ffffffffffffffffffffffffffffffffffffffff1663bc197c8133888787876040518663ffffffff1660e01b8152600401808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001806020018060200180602001848103845287818151815260200191508051906020019060200280838360005b83811015612a005780820151818401526020810190506129e5565b50505050905001848103835286818151815260200191508051906020019060200280838360005b83811015612a42578082015181840152602081019050612a27565b50505050905001848103825285818151815260200191508051906020019080838360005b83811015612a81578082015181840152602081019050612a66565b50505050905090810190601f168015612aae5780820380516001836020036101000a031916815260200191505b5098505050505050505050602060405180830381600087803b158015612ad357600080fd5b505af1158015612ae7573d6000803e3d6000fd5b505050506040513d6020811015612afd57600080fd5b8101908080519060200190929190505050905063bc197c8160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614612bad576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603f815260200180613e77603f913960400191505060405180910390fd5b505b5050505050565b612bca8160046139c690919063ffffffff16565b8073ffffffffffffffffffffffffffffffffffffffff167fe94479a9f7e1952cc78f2d6baab678adc1b772d936c6583def489e524cb6669260405160405180910390a250565b600033905090565b612c2c8160056139c690919063ffffffff16565b8073ffffffffffffffffffffffffffffffffffffffff167f0a8eb35e5ca14b3d6f28e4abf2f128dbab231a58b56e89beb5d636115001e16560405160405180910390a250565b612cd4826000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600086815260200190815260200160002054612dc090919063ffffffff16565b6000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000858152602001908152602001600020819055508373ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628686604051808381526020018281526020019250505060405180910390a4612dba6000858585856132ad565b50505050565b600080828401905083811015612e3e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260168152602001807f536166654d617468236164643a204f564552464c4f570000000000000000000081525060200191505060405180910390fd5b8091505092915050565b612e5c816005613a8390919063ffffffff16565b8073ffffffffffffffffffffffffffffffffffffffff167f22380c05984257a1cb900161c713dd71d39e74820f1aea43bd3f1bdd2096129960405160405180910390a250565b8060029080519060200190612eb8929190613b5e565b5050565b612ed0816004613a8390919063ffffffff16565b8073ffffffffffffffffffffffffffffffffffffffff167f6ae172837ea30b801fbfcdd4108aa1d5bf8ff775444fd70256b44e6bf3dfc3f660405160405180910390a250565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612f9d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526022815260200180613dba6022913960400191505060405180910390fd5b8260000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600061300c6001600754612dc090919063ffffffff16565b905090565b600760008154809291906001019190505550565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61311b816000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000858152602001908152602001600020546138f290919063ffffffff16565b6000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000848152602001908152602001600020819055506131d0816000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600085815260200190815260200160002054612dc090919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000848152602001908152602001600020819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628585604051808381526020018281526020019250505060405180910390a450505050565b6132cc8473ffffffffffffffffffffffffffffffffffffffff1661397b565b156134df5760008473ffffffffffffffffffffffffffffffffffffffff1663f23a6e6133888787876040518663ffffffff1660e01b8152600401808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200184815260200183815260200180602001828103825283818151815260200191508051906020019080838360005b838110156133b3578082015181840152602081019050613398565b50505050905090810190601f1680156133e05780820380516001836020036101000a031916815260200191505b509650505050505050602060405180830381600087803b15801561340357600080fd5b505af1158015613417573d6000803e3d6000fd5b505050506040513d602081101561342d57600080fd5b8101908080519060200190929190505050905063f23a6e6160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916146134dd576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603a815260200180613eb6603a913960400191505060405180910390fd5b505b5050505050565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561356c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526026815260200180613c626026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6060808690506060869050606086905060608690506060869050606081518351855187518951010101016040519080825280601f01601f1916602001820160405280156136885781602001600182028038833980820191505090505b5090506060819050600080905060008090505b8851811015613709578881815181106136b057fe5b602001015160f81c60f81b8383806001019450815181106136cd57fe5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350808060010191505061369b565b5060008090505b875181101561377e5787818151811061372557fe5b602001015160f81c60f81b83838060010194508151811061374257fe5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053508080600101915050613710565b5060008090505b86518110156137f35786818151811061379a57fe5b602001015160f81c60f81b8383806001019450815181106137b757fe5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053508080600101915050613785565b5060008090505b85518110156138685785818151811061380f57fe5b602001015160f81c60f81b83838060010194508151811061382c57fe5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535080806001019150506137fa565b5060008090505b84518110156138dd5784818151811061388457fe5b602001015160f81c60f81b8383806001019450815181106138a157fe5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350808060010191505061386f565b50819850505050505050505095945050505050565b60008282111561396a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260178152602001807f536166654d617468237375623a20554e444552464c4f5700000000000000000081525060200191505060405180910390fd5b600082840390508091505092915050565b60008060007fc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a47060001b9050833f91506000801b82141580156139bd5750808214155b92505050919050565b6139d08282612f16565b613a25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526021815260200180613d176021913960400191505060405180910390fd5b60008260000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b613a8d8282612f16565b15613b00576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f526f6c65733a206163636f756e7420616c72656164792068617320726f6c650081525060200191505060405180910390fd5b60018260000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10613b9f57805160ff1916838001178555613bcd565b82800160010185558215613bcd579182015b82811115613bcc578251825591602001919060010190613bb1565b5b509050613bda9190613bde565b5090565b613c0091905b80821115613bfc576000816000905550600101613be4565b5090565b9056fe68747470733a2f2f6461726b6d61747465722e66696e616e63652f6170692f636f6e74726163742f646d742d657263313135354552433131353523736166655472616e7366657246726f6d3a20494e56414c49445f524543495049454e544f776e61626c653a206e6577206f776e657220697320746865207a65726f20616464726573734552433131353523736166655472616e7366657246726f6d3a20494e56414c49445f4f50455241544f5245524331313535235f7361666542617463685472616e7366657246726f6d3a20494e56414c49445f4152524159535f4c454e4754484d696e746572526f6c653a2063616c6c657220646f6573206e6f74206861766520746865204d696e74657220726f6c65526f6c65733a206163636f756e7420646f6573206e6f74206861766520726f6c6545524331313535237361666542617463685472616e7366657246726f6d3a20494e56414c49445f524543495049454e544552433732315472616461626c65237572693a204e4f4e4558495354454e545f544f4b454e496e697469616c20737570706c792063616e6e6f74206265206d6f7265207468616e206d617820737570706c79526f6c65733a206163636f756e7420697320746865207a65726f206164647265737357686974656c69737441646d696e526f6c653a2063616c6c657220646f6573206e6f742068617665207468652057686974656c69737441646d696e20726f6c65455243313135352362616c616e63654f6642617463683a20494e56414c49445f41525241595f4c454e47544845524331313535237361666542617463685472616e7366657246726f6d3a20494e56414c49445f4f50455241544f5245524331313535235f63616c6c6f6e45524331313535426174636852656365697665643a20494e56414c49445f4f4e5f524543454956455f4d45535341474545524331313535235f63616c6c6f6e4552433131353552656365697665643a20494e56414c49445f4f4e5f524543454956455f4d455353414745a26469706673582212209931c6e7ff38336fffba7f5653496d14618202af68cef6b9057efc2d86abe28c64736f6c63430006020033526f6c65733a206163636f756e7420697320746865207a65726f206164647265737368747470733a2f2f6461726b6d61747465722e66696e616e63652f6170692f6e66742f000000000000000000000000a5409ec958c83c3f309868babaca7c86dcb077c1
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101e35760003560e01c8063869f75941161010f578063b09ddf7b116100a2578063e8a3d48511610071578063e8a3d48514610ed8578063e985e9c514610f5b578063f242432a14610fd7578063f2fde38b146110e6576101e3565b8063b09ddf7b14610cd6578063bb5f747b14610dcc578063bd85b03914610e28578063cd53d08e14610e6a576101e3565b8063983b2d56116100de578063983b2d5614610bdc5780639865027514610c20578063a22cb46514610c2a578063aa271e1a14610c7a576101e3565b8063869f759414610aab5780638da5cb5b14610aed5780638f32d59b14610b3757806395d89b4114610b59576101e3565b80633092afd511610187578063715018a611610156578063715018a6146108b3578063731133e9146108bd5780637362d9c8146109ac5780637e518ec8146109f0576101e3565b80633092afd5146106805780634c5a628c146106c45780634e1273f4146106ce5780636897e9741461086f576101e3565b806306fdde03116101c357806306fdde03146102f15780630e89341c146103745780632693ebf21461041b5780632eb2c2d61461045d576101e3565b80624221f0146101e8578062fdd58e1461022a57806301ffc9a71461028c575b600080fd5b610214600480360360208110156101fe57600080fd5b810190808035906020019092919050505061112a565b6040518082815260200191505060405180910390f35b6102766004803603604081101561024057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611142565b6040518082815260200191505060405180910390f35b6102d7600480360360208110156102a257600080fd5b8101908080357bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916906020019092919050505061119c565b604051808215151515815260200191505060405180910390f35b6102f961124d565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561033957808201518184015260208101905061031e565b50505050905090810190601f1680156103665780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6103a06004803603602081101561038a57600080fd5b81019080803590602001909291905050506112eb565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156103e05780820151818401526020810190506103c5565b50505050905090810190601f16801561040d5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6104476004803603602081101561043157600080fd5b81019080803590602001909291905050506113fe565b6040518082815260200191505060405180910390f35b61067e600480360360a081101561047357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001906401000000008111156104d057600080fd5b8201836020820111156104e257600080fd5b8035906020019184602083028401116401000000008311171561050457600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f8201169050808301925050505050505091929192908035906020019064010000000081111561056457600080fd5b82018360208201111561057657600080fd5b8035906020019184602083028401116401000000008311171561059857600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f820116905080830192505050505050509192919290803590602001906401000000008111156105f857600080fd5b82018360208201111561060a57600080fd5b8035906020019184600183028401116401000000008311171561062c57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050509192919290505050611416565b005b6106c26004803603602081101561069657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611551565b005b6106cc6115d7565b005b610818600480360360408110156106e457600080fd5b810190808035906020019064010000000081111561070157600080fd5b82018360208201111561071357600080fd5b8035906020019184602083028401116401000000008311171561073557600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f8201169050808301925050505050505091929192908035906020019064010000000081111561079557600080fd5b8201836020820111156107a757600080fd5b803590602001918460208302840111640100000000831117156107c957600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f8201169050808301925050505050505091929192905050506115e9565b6040518080602001828103825283818151815260200191508051906020019060200280838360005b8381101561085b578082015181840152602081019050610840565b505050509050019250505060405180910390f35b6108b16004803603602081101561088557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061172f565b005b6108bb6117b5565b005b6109aa600480360360808110156108d357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190803590602001909291908035906020019064010000000081111561092457600080fd5b82018360208201111561093657600080fd5b8035906020019184600183028401116401000000008311171561095857600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f8201169050808301925050505050505091929192905050506118f0565b005b6109ee600480360360208110156109c257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611a45565b005b610aa960048036036020811015610a0657600080fd5b8101908080359060200190640100000000811115610a2357600080fd5b820183602082011115610a3557600080fd5b80359060200191846001830284011164010000000083111715610a5757600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050509192919290505050611ab6565b005b610ad760048036036020811015610ac157600080fd5b8101908080359060200190929190505050611b27565b6040518082815260200191505060405180910390f35b610af5611b44565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b610b3f611b6e565b604051808215151515815260200191505060405180910390f35b610b61611bcd565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610ba1578082015181840152602081019050610b86565b50505050905090810190601f168015610bce5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b610c1e60048036036020811015610bf257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611c6b565b005b610c28611cdc565b005b610c7860048036036040811015610c4057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803515159060200190929190505050611cee565b005b610cbc60048036036020811015610c9057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611def565b604051808215151515815260200191505060405180910390f35b610db660048036036080811015610cec57600080fd5b81019080803590602001909291908035906020019092919080359060200190640100000000811115610d1d57600080fd5b820183602082011115610d2f57600080fd5b80359060200191846001830284011164010000000083111715610d5157600080fd5b909192939192939080359060200190640100000000811115610d7257600080fd5b820183602082011115610d8457600080fd5b80359060200191846001830284011164010000000083111715610da657600080fd5b9091929391929390505050611e0c565b6040518082815260200191505060405180910390f35b610e0e60048036036020811015610de257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061203a565b604051808215151515815260200191505060405180910390f35b610e5460048036036020811015610e3e57600080fd5b8101908080359060200190929190505050612057565b6040518082815260200191505060405180910390f35b610e9660048036036020811015610e8057600080fd5b8101908080359060200190929190505050612074565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b610ee06120a7565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610f20578082015181840152602081019050610f05565b50505050905090810190601f168015610f4d5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b610fbd60048036036040811015610f7157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506120c7565b604051808215151515815260200191505060405180910390f35b6110e4600480360360a0811015610fed57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190803590602001909291908035906020019064010000000081111561105e57600080fd5b82018360208201111561107057600080fd5b8035906020019184600183028401116401000000008311171561109257600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f8201169050808301925050505050505091929192905050506121f8565b005b611128600480360360208110156110fc57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612333565b005b600a6020528060005260406000206000915090505481565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b60006301ffc9a760e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611235575063d9b67a2660e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b156112435760019050611248565b600090505b919050565b600b8054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156112e35780601f106112b8576101008083540402835291602001916112e3565b820191906000526020600020905b8154815290600101906020018083116112c657829003601f168201915b505050505081565b60606112f6826123b9565b61134b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526025815260200180613d686025913960400191505060405180910390fd5b6113f760028054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156113e45780601f106113b9576101008083540402835291602001916113e4565b820191906000526020600020905b8154815290600101906020018083116113c757829003601f168201915b50505050506113f284612425565b612552565b9050919050565b60096020528060005260406000206000915090505481565b8473ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161480611456575061145585336120c7565b5b6114ab576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602f815260200180613e48602f913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611531576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526030815260200180613d386030913960400191505060405180910390fd5b61153d85858585612596565b61154a85858585856128fb565b5050505050565b611559611b6e565b6115cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6115d481612bb6565b50565b6115e76115e2612c10565b612c18565b565b60608151835114611645576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c815260200180613e1c602c913960400191505060405180910390fd5b606083516040519080825280602002602001820160405280156116775781602001602082028038833980820191505090505b50905060008090505b84518110156117245760008086838151811061169857fe5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008583815181106116e857fe5b602002602001015181526020019081526020016000205482828151811061170b57fe5b6020026020010181815250508080600101915050611680565b508091505092915050565b611737611b6e565b6117a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6117b281612c18565b50565b6117bd611b6e565b61182f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6119006118fb612c10565b611def565b611955576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526030815260200180613ce76030913960400191505060405180910390fd5b6000839050600a6000828152602001908152602001600020546009600083815260200190815260200160002054106119f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260128152602001807f4d617820737570706c792072656163686564000000000000000000000000000081525060200191505060405180910390fd5b611a0185858585612c72565b611a27836009600087815260200190815260200160002054612dc090919063ffffffff16565b60096000868152602001908152602001600020819055505050505050565b611a55611a50612c10565b61203a565b611aaa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526040815260200180613ddc6040913960400191505060405180910390fd5b611ab381612e48565b50565b611ac6611ac1612c10565b61203a565b611b1b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526040815260200180613ddc6040913960400191505060405180910390fd5b611b2481612ea2565b50565b6000600a6000838152602001908152602001600020549050919050565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16611bb1612c10565b73ffffffffffffffffffffffffffffffffffffffff1614905090565b600c8054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015611c635780601f10611c3857610100808354040283529160200191611c63565b820191906000526020600020905b815481529060010190602001808311611c4657829003601f168201915b505050505081565b611c7b611c76612c10565b611def565b611cd0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526030815260200180613ce76030913960400191505060405180910390fd5b611cd981612ebc565b50565b611cec611ce7612c10565b612bb6565b565b80600160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051808215151515815260200191505060405180910390a35050565b6000611e05826004612f1690919063ffffffff16565b9050919050565b6000611e1e611e19612c10565b61203a565b611e73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526040815260200180613ddc6040913960400191505060405180910390fd5b86861115611ecc576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602d815260200180613d8d602d913960400191505060405180910390fd5b6000611ed6612ff4565b9050611ee0613011565b336008600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000868690501115611fa357807f6bb7ff708619ba0610cba295a58592e0451dee2622938c8755667688daf3529b878760405180806020018281038252848482818152602001925080828437600081840152601f19601f820116905080830192505050935050505060405180910390a25b60008714611ffc57611ffb33828987878080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f82011690508083019250505050505050612c72565b5b86600960008381526020019081526020016000208190555087600a600083815260200190815260200160002081905550809150509695505050505050565b6000612050826005612f1690919063ffffffff16565b9050919050565b600060096000838152602001908152602001600020549050919050565b60086020528060005260406000206000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6060604051806060016040528060338152602001613c0460339139905090565b600080600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508273ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1663c4552791866040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b15801561218357600080fd5b505afa158015612197573d6000803e3d6000fd5b505050506040513d60208110156121ad57600080fd5b810190808051906020019092919050505073ffffffffffffffffffffffffffffffffffffffff1614156121e45760019150506121f2565b6121ee8484613025565b9150505b92915050565b8473ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161480612238575061223785336120c7565b5b61228d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a815260200180613c88602a913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612313576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602b815260200180613c37602b913960400191505060405180910390fd5b61231f858585856130b9565b61232c85858585856132ad565b5050505050565b61233b611b6e565b6123ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6123b6816134e6565b50565b60008073ffffffffffffffffffffffffffffffffffffffff166008600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b6060600082141561246d576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061254d565b600082905060005b60008214612497578080600101915050600a828161248f57fe5b049150612475565b6060816040519080825280601f01601f1916602001820160405280156124cc5781602001600182028038833980820191505090505b50905060006001830390505b6000861461254557600a86816124ea57fe5b0660300160f81b8282806001900393508151811061250457fe5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a868161253d57fe5b0495506124d8565b819450505050505b919050565b606061258e838360405180602001604052806000815250604051806020016040528060008152506040518060200160405280600081525061362c565b905092915050565b80518251146125f0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526035815260200180613cb26035913960400191505060405180910390fd5b60008251905060008090505b818110156127ed5761268c83828151811061261357fe5b60200260200101516000808973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600087858151811061266757fe5b60200260200101518152602001908152602001600020546138f290919063ffffffff16565b6000808873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008684815181106126d857fe5b602002602001015181526020019081526020016000208190555061277a83828151811061270157fe5b60200260200101516000808873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600087858151811061275557fe5b6020026020010151815260200190815260200160002054612dc090919063ffffffff16565b6000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008684815181106127c657fe5b602002602001015181526020019081526020016000208190555080806001019150506125fc565b508373ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8686604051808060200180602001838103835285818151815260200191508051906020019060200280838360005b8381101561289d578082015181840152602081019050612882565b50505050905001838103825284818151815260200191508051906020019060200280838360005b838110156128df5780820151818401526020810190506128c4565b5050505090500194505050505060405180910390a45050505050565b61291a8473ffffffffffffffffffffffffffffffffffffffff1661397b565b15612baf5760008473ffffffffffffffffffffffffffffffffffffffff1663bc197c8133888787876040518663ffffffff1660e01b8152600401808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001806020018060200180602001848103845287818151815260200191508051906020019060200280838360005b83811015612a005780820151818401526020810190506129e5565b50505050905001848103835286818151815260200191508051906020019060200280838360005b83811015612a42578082015181840152602081019050612a27565b50505050905001848103825285818151815260200191508051906020019080838360005b83811015612a81578082015181840152602081019050612a66565b50505050905090810190601f168015612aae5780820380516001836020036101000a031916815260200191505b5098505050505050505050602060405180830381600087803b158015612ad357600080fd5b505af1158015612ae7573d6000803e3d6000fd5b505050506040513d6020811015612afd57600080fd5b8101908080519060200190929190505050905063bc197c8160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614612bad576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603f815260200180613e77603f913960400191505060405180910390fd5b505b5050505050565b612bca8160046139c690919063ffffffff16565b8073ffffffffffffffffffffffffffffffffffffffff167fe94479a9f7e1952cc78f2d6baab678adc1b772d936c6583def489e524cb6669260405160405180910390a250565b600033905090565b612c2c8160056139c690919063ffffffff16565b8073ffffffffffffffffffffffffffffffffffffffff167f0a8eb35e5ca14b3d6f28e4abf2f128dbab231a58b56e89beb5d636115001e16560405160405180910390a250565b612cd4826000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600086815260200190815260200160002054612dc090919063ffffffff16565b6000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000858152602001908152602001600020819055508373ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628686604051808381526020018281526020019250505060405180910390a4612dba6000858585856132ad565b50505050565b600080828401905083811015612e3e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260168152602001807f536166654d617468236164643a204f564552464c4f570000000000000000000081525060200191505060405180910390fd5b8091505092915050565b612e5c816005613a8390919063ffffffff16565b8073ffffffffffffffffffffffffffffffffffffffff167f22380c05984257a1cb900161c713dd71d39e74820f1aea43bd3f1bdd2096129960405160405180910390a250565b8060029080519060200190612eb8929190613b5e565b5050565b612ed0816004613a8390919063ffffffff16565b8073ffffffffffffffffffffffffffffffffffffffff167f6ae172837ea30b801fbfcdd4108aa1d5bf8ff775444fd70256b44e6bf3dfc3f660405160405180910390a250565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612f9d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526022815260200180613dba6022913960400191505060405180910390fd5b8260000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600061300c6001600754612dc090919063ffffffff16565b905090565b600760008154809291906001019190505550565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61311b816000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000858152602001908152602001600020546138f290919063ffffffff16565b6000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000848152602001908152602001600020819055506131d0816000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600085815260200190815260200160002054612dc090919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000848152602001908152602001600020819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628585604051808381526020018281526020019250505060405180910390a450505050565b6132cc8473ffffffffffffffffffffffffffffffffffffffff1661397b565b156134df5760008473ffffffffffffffffffffffffffffffffffffffff1663f23a6e6133888787876040518663ffffffff1660e01b8152600401808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200184815260200183815260200180602001828103825283818151815260200191508051906020019080838360005b838110156133b3578082015181840152602081019050613398565b50505050905090810190601f1680156133e05780820380516001836020036101000a031916815260200191505b509650505050505050602060405180830381600087803b15801561340357600080fd5b505af1158015613417573d6000803e3d6000fd5b505050506040513d602081101561342d57600080fd5b8101908080519060200190929190505050905063f23a6e6160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916146134dd576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603a815260200180613eb6603a913960400191505060405180910390fd5b505b5050505050565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561356c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526026815260200180613c626026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6060808690506060869050606086905060608690506060869050606081518351855187518951010101016040519080825280601f01601f1916602001820160405280156136885781602001600182028038833980820191505090505b5090506060819050600080905060008090505b8851811015613709578881815181106136b057fe5b602001015160f81c60f81b8383806001019450815181106136cd57fe5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350808060010191505061369b565b5060008090505b875181101561377e5787818151811061372557fe5b602001015160f81c60f81b83838060010194508151811061374257fe5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053508080600101915050613710565b5060008090505b86518110156137f35786818151811061379a57fe5b602001015160f81c60f81b8383806001019450815181106137b757fe5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053508080600101915050613785565b5060008090505b85518110156138685785818151811061380f57fe5b602001015160f81c60f81b83838060010194508151811061382c57fe5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535080806001019150506137fa565b5060008090505b84518110156138dd5784818151811061388457fe5b602001015160f81c60f81b8383806001019450815181106138a157fe5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350808060010191505061386f565b50819850505050505050505095945050505050565b60008282111561396a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260178152602001807f536166654d617468237375623a20554e444552464c4f5700000000000000000081525060200191505060405180910390fd5b600082840390508091505092915050565b60008060007fc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a47060001b9050833f91506000801b82141580156139bd5750808214155b92505050919050565b6139d08282612f16565b613a25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526021815260200180613d176021913960400191505060405180910390fd5b60008260000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b613a8d8282612f16565b15613b00576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f526f6c65733a206163636f756e7420616c72656164792068617320726f6c650081525060200191505060405180910390fd5b60018260000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10613b9f57805160ff1916838001178555613bcd565b82800160010185558215613bcd579182015b82811115613bcc578251825591602001919060010190613bb1565b5b509050613bda9190613bde565b5090565b613c0091905b80821115613bfc576000816000905550600101613be4565b5090565b9056fe68747470733a2f2f6461726b6d61747465722e66696e616e63652f6170692f636f6e74726163742f646d742d657263313135354552433131353523736166655472616e7366657246726f6d3a20494e56414c49445f524543495049454e544f776e61626c653a206e6577206f776e657220697320746865207a65726f20616464726573734552433131353523736166655472616e7366657246726f6d3a20494e56414c49445f4f50455241544f5245524331313535235f7361666542617463685472616e7366657246726f6d3a20494e56414c49445f4152524159535f4c454e4754484d696e746572526f6c653a2063616c6c657220646f6573206e6f74206861766520746865204d696e74657220726f6c65526f6c65733a206163636f756e7420646f6573206e6f74206861766520726f6c6545524331313535237361666542617463685472616e7366657246726f6d3a20494e56414c49445f524543495049454e544552433732315472616461626c65237572693a204e4f4e4558495354454e545f544f4b454e496e697469616c20737570706c792063616e6e6f74206265206d6f7265207468616e206d617820737570706c79526f6c65733a206163636f756e7420697320746865207a65726f206164647265737357686974656c69737441646d696e526f6c653a2063616c6c657220646f6573206e6f742068617665207468652057686974656c69737441646d696e20726f6c65455243313135352362616c616e63654f6642617463683a20494e56414c49445f41525241595f4c454e47544845524331313535237361666542617463685472616e7366657246726f6d3a20494e56414c49445f4f50455241544f5245524331313535235f63616c6c6f6e45524331313535426174636852656365697665643a20494e56414c49445f4f4e5f524543454956455f4d45535341474545524331313535235f63616c6c6f6e4552433131353552656365697665643a20494e56414c49445f4f4e5f524543454956455f4d455353414745a26469706673582212209931c6e7ff38336fffba7f5653496d14618202af68cef6b9057efc2d86abe28c64736f6c63430006020033
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
42404:382:0:-:0;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;42404:382:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38062:49;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;38062:49:0;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;27198:127;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;27198:127:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;28603:249;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;28603:249:0;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;38134:18;;;:::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;38134:18:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38609:212;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;38609:212:0;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;38609:212:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38012:46;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;38012:46:0;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;22428:511;;;;;;13:3:-1;8;5:12;2:2;;;30:1;27;20:12;2:2;22428:511:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21:11:-1;8;5:28;2:2;;;46:1;43;36:12;2:2;22428:511:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;22428: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;22428: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;;22428:511:0;;;;;;;;;;;;;;;;;21:11:-1;8;5:28;2:2;;;46:1;43;36:12;2:2;22428:511:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;22428: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;22428: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;;22428:511:0;;;;;;;;;;;;;;;;;21:11:-1;8;5:28;2:2;;;46:1;43;36:12;2:2;22428:511:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;22428: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;22428: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;;22428:511:0;;;;;;;;;;;;;;;:::i;:::-;;38516:88;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;38516:88:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;6450:95;;;:::i;:::-;;27613:500;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;27613:500:0;;;;;;;;;;21:11:-1;8;5:28;2:2;;;46:1;43;36:12;2:2;27613:500:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;27613: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;27613: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;;27613:500:0;;;;;;;;;;;;;;;;;21:11:-1;8;5:28;2:2;;;46:1;43;36:12;2:2;27613:500:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;27613: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;27613: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;;27613: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;27613:500:0;;;;;;;;;;;;;;;;;38407:104;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;38407:104:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;2825:140;;;:::i;:::-;;40804:319;;;;;;13:3:-1;8;5:12;2:2;;;30:1;27;20:12;2:2;40804:319:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21:11:-1;8;5:28;2:2;;;46:1;43;36:12;2:2;40804:319:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;40804:319: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;40804:319: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;;40804:319:0;;;;;;;;;;;;;;;:::i;:::-;;6326:116;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;6326:116:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;39461:139;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;39461:139:0;;;;;;;;;;21:11:-1;8;5:28;2:2;;;46:1;43;36:12;2:2;39461:139:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;39461:139: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;39461:139: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;;39461:139:0;;;;;;;;;;;;;;;:::i;:::-;;39236:98;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;39236:98:0;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;2014:79;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;2380:94;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;38177:20;;;:::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;38177:20:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5109:92;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;5109:92:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;5209:79;;;:::i;:::-;;26257:227;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;26257:227:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;4992:109;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;4992:109:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;39918:597;;;;;;13:3:-1;8;5:12;2:2;;;30:1;27;20:12;2:2;39918:597:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;21:11:-1;8;5:28;2:2;;;46:1;43;36:12;2:2;39918:597:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;39918:597: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;39918:597:0;;;;;;;;;;;;;;21:11:-1;8;5:28;2:2;;;46:1;43;36:12;2:2;39918:597:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;39918:597: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;39918:597:0;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;6193:125;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;6193:125:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;38981:97;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;38981:97:0;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;37965:43;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;37965:43:0;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;42654:129;;;:::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;42654:129:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41243:381;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;41243:381:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;21490:545;;;;;;13:3:-1;8;5:12;2:2;;;30:1;27;20:12;2:2;21490:545:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21:11:-1;8;5:28;2:2;;;46:1;43;36:12;2:2;21490:545:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;21490: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;21490: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;;21490:545:0;;;;;;;;;;;;;;;:::i;:::-;;3120:109;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;3120:109:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;38062:49;;;;;;;;;;;;;;;;;:::o;27198:127::-;27272:7;27298:8;:16;27307:6;27298:16;;;;;;;;;;;;;;;:21;27315:3;27298:21;;;;;;;;;;;;27291:28;;27198:127;;;;:::o;28603:249::-;28683:4;28299:10;28716:26;;28700:42;;;:12;:42;;;;:98;;;;28370:10;28771:27;;28755:43;;;:12;:43;;;;28700:98;28696:132;;;28816:4;28809:11;;;;28696:132;28841:5;28834:12;;28603:249;;;;:::o;38134:18::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;38609:212::-;38665:13;38693:12;38701:3;38693:7;:12::i;:::-;38685:62;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38759:57;38777:15;38759:57;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38794:21;38811:3;38794:16;:21::i;:::-;38759:17;:57::i;:::-;38752:64;;38609:212;;;:::o;38012:46::-;;;;;;;;;;;;;;;;;:::o;22428:511::-;22623:5;22609:19;;:10;:19;;;22608:60;;;;22633:35;22650:5;22657:10;22633:16;:35::i;:::-;22608:60;22600:120;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22750:1;22735:17;;:3;:17;;;;22727:78;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22814:50;22837:5;22844:3;22849:4;22855:8;22814:22;:50::i;:::-;22871:62;22899:5;22906:3;22911:4;22917:8;22927:5;22871:27;:62::i;:::-;22428:511;;;;;:::o;38516:88::-;2226:9;:7;:9::i;:::-;2218:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38577:22:::1;38591:7;38577:13;:22::i;:::-;38516:88:::0;:::o;6450:95::-;6502:35;6524:12;:10;:12::i;:::-;6502:21;:35::i;:::-;6450:95::o;27613:500::-;27712:16;27766:4;:11;27748:7;:14;:29;27740:86;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27853:30;27900:7;:14;27886: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;27886:29:0;;;;27853:62;;27974:9;27986:1;27974:13;;27969:110;27993:7;:14;27989:1;:18;27969:110;;;28042:8;:20;28051:7;28059:1;28051:10;;;;;;;;;;;;;;28042:20;;;;;;;;;;;;;;;:29;28063:4;28068:1;28063:7;;;;;;;;;;;;;;28042:29;;;;;;;;;;;;28023:13;28037:1;28023:16;;;;;;;;;;;;;:48;;;;;28009:3;;;;;;;27969:110;;;;28094:13;28087:20;;;27613:500;;;;:::o;38407:104::-;2226:9;:7;:9::i;:::-;2218:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38476:30:::1;38498:7;38476:21;:30::i;:::-;38407:104:::0;:::o;2825:140::-;2226:9;:7;:9::i;:::-;2218:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2924:1:::1;2887:40;;2908:6;;;;;;;;;;;2887:40;;;;;;;;;;;;2955:1;2938:6;;:19;;;;;;;;;;;;;;;;;;2825:140::o:0;40804:319::-;4889:22;4898:12;:10;:12::i;:::-;4889:8;:22::i;:::-;4881:83;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40922:15:::1;40940:3;40922:21;;40979:14;:23;40994:7;40979:23;;;;;;;;;;;;40956:11;:20;40968:7;40956:20;;;;;;;;;;;;:46;40948:77;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;41030:33;41036:3;41041;41046:9;41057:5;41030;:33::i;:::-;41087:31;41108:9;41087:11;:16;41099:3;41087:16;;;;;;;;;;;;:20;;:31;;;;:::i;:::-;41068:11;:16;41080:3;41068:16;;;;;;;;;;;:50;;;;4975:1;40804:319:::0;;;;:::o;6326:116::-;6066:30;6083:12;:10;:12::i;:::-;6066:16;:30::i;:::-;6058:107;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6407:27:::1;6426:7;6407:18;:27::i;:::-;6326:116:::0;:::o;39461:139::-;6066:30;6083:12;:10;:12::i;:::-;6066:16;:30::i;:::-;6058:107;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39555:40:::1;39575:19;39555;:40::i;:::-;39461:139:::0;:::o;39236:98::-;39289:7;39310:14;:19;39325:3;39310:19;;;;;;;;;;;;39303:26;;39236:98;;;:::o;2014:79::-;2052:7;2079:6;;;;;;;;;;;2072:13;;2014:79;:::o;2380:94::-;2420:4;2460:6;;;;;;;;;;;2444:22;;:12;:10;:12::i;:::-;:22;;;2437:29;;2380:94;:::o;38177:20::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;5109:92::-;4889:22;4898:12;:10;:12::i;:::-;4889:8;:22::i;:::-;4881:83;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5174:19:::1;5185:7;5174:10;:19::i;:::-;5109:92:::0;:::o;5209:79::-;5253:27;5267:12;:10;:12::i;:::-;5253:13;:27::i;:::-;5209:79::o;26257:227::-;26409:9;26374;:21;26384:10;26374:21;;;;;;;;;;;;;;;:32;26396:9;26374:32;;;;;;;;;;;;;;;;:44;;;;;;;;;;;;;;;;;;26457:9;26430:48;;26445:10;26430:48;;;26468:9;26430:48;;;;;;;;;;;;;;;;;;;;;;26257:227;;:::o;4992:109::-;5048:4;5072:21;5085:7;5072:8;:12;;:21;;;;:::i;:::-;5065:28;;4992:109;;;:::o;39918:597::-;40075:15;6066:30;6083:12;:10;:12::i;:::-;6066:16;:30::i;:::-;6058:107;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40123:10:::1;40105:14;:28;;40097:86;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40188:11;40202:17;:15;:17::i;:::-;40188:31;;40224:23;:21;:23::i;:::-;40268:10;40252:8;:13;40261:3;40252:13;;;;;;;;;;;;:26;;;;;;;;;;;;;;;;;;40310:1;40295:4;;40289:18;;:22;40285:59;;;40334:3;40324:14;40328:4;;40324: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;;40324:14:0;;;;;;;;;;;;;;40285:59;40372:1;40354:14;:19;40350:70;;40375:45;40381:10;40393:3;40398:14;40414:5;;40375: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;;40375:45:0;;;;;;:5;:45::i;:::-;40350:70;40444:14;40425:11;:16;40437:3;40425:16;;;;;;;;;;;:33;;;;40485:10;40463:14;:19;40478:3;40463:19;;;;;;;;;;;:32;;;;40507:3;40500:10;;;39918:597:::0;;;;;;;;:::o;6193:125::-;6257:4;6281:29;6302:7;6281:16;:20;;:29;;;;:::i;:::-;6274:36;;6193:125;;;:::o;38981:97::-;39036:7;39057:11;:16;39069:3;39057:16;;;;;;;;;;;;39050:23;;38981:97;;;:::o;37965:43::-;;;;;;;;;;;;;;;;;;;;;;:::o;42654:129::-;42698:13;42718:60;;;;;;;;;;;;;;;;;;;42654:129;:::o;41243:381::-;41334:15;41413:27;41457:20;;;;;;;;;;;41413:65;;41529:9;41487:51;;41495:13;:21;;;41517:6;41495:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;41495:29:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;41495:29:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;41495:29:0;;;;;;;;;;;;;;;;41487:51;;;41483:80;;;41553:4;41546:11;;;;;41483:80;41576:43;41601:6;41609:9;41576:24;:43::i;:::-;41569:50;;;41243:381;;;;;:::o;21490:545::-;21639:5;21625:19;;:10;:19;;;21624:60;;;;21649:35;21666:5;21673:10;21649:16;:35::i;:::-;21624:60;21616:115;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21761:1;21746:17;;:3;:17;;;;21738:72;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21924:43;21942:5;21949:3;21954;21959:7;21924:17;:43::i;:::-;21974:55;21997:5;22004:3;22009;22014:7;22023:5;21974:22;:55::i;:::-;21490:545;;;;;:::o;3120:109::-;2226:9;:7;:9::i;:::-;2218:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3193:28:::1;3212:8;3193:18;:28::i;:::-;3120:109:::0;:::o;41842:103::-;41895:4;41938:1;41913:27;;:8;:13;41922:3;41913:13;;;;;;;;;;;;;;;;;;;;;:27;;;;41906:34;;41842:103;;;:::o;36975:384::-;37028:27;37072:1;37066:2;:7;37062:35;;;37081:10;;;;;;;;;;;;;;;;;;;;;37062:35;37101:9;37113:2;37101:14;;37120:11;37136:45;37148:1;37143;:6;37136:45;;37157:5;;;;;;;37173:2;37168:7;;;;;;;;;37136:45;;;37185:17;37215:3;37205: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;37205:14:0;;;;37185:34;;37224:9;37242:1;37236:3;:7;37224:19;;37248:83;37261:1;37255:2;:7;37248:83;;37306:2;37301;:7;;;;;;37295:2;:14;37282:29;;37270:4;37275:3;;;;;;;37270:9;;;;;;;;;;;:41;;;;;;;;;;;37323:2;37317:8;;;;;;;;;37248:83;;;37349:4;37335:19;;;;;;36975:384;;;;:::o;36831:139::-;36909:13;36936:29;36946:2;36950;36936:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:9;:29::i;:::-;36929:36;;36831:139;;;;:::o;24567:687::-;24724:8;:15;24709:4;:11;:30;24701:96;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24844:17;24864:4;:11;24844:31;;24921:9;24933:1;24921:13;;24916:247;24940:9;24936:1;:13;24916:247;;;25041:41;25070:8;25079:1;25070:11;;;;;;;;;;;;;;25041:8;:15;25050:5;25041:15;;;;;;;;;;;;;;;:24;25057:4;25062:1;25057:7;;;;;;;;;;;;;;25041:24;;;;;;;;;;;;:28;;:41;;;;:::i;:::-;25014:8;:15;25023:5;25014:15;;;;;;;;;;;;;;;:24;25030:4;25035:1;25030:7;;;;;;;;;;;;;;25014:24;;;;;;;;;;;:68;;;;25116:39;25143:8;25152:1;25143:11;;;;;;;;;;;;;;25116:8;:13;25125:3;25116:13;;;;;;;;;;;;;;;:22;25130:4;25135:1;25130:7;;;;;;;;;;;;;;25116:22;;;;;;;;;;;;:26;;:39;;;;:::i;:::-;25091:8;:13;25100:3;25091:13;;;;;;;;;;;;;;;:22;25105:4;25110:1;25105:7;;;;;;;;;;;;;;25091:22;;;;;;;;;;;:64;;;;24951:3;;;;;;;24916:247;;;;25228:3;25195:53;;25221:5;25195:53;;25209:10;25195:53;;;25233:4;25239:8;25195: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;25195: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;25195:53:0;;;;;;;;;;;;;;;;;;;24567:687;;;;;:::o;25372:476::-;25578:16;:3;:14;;;:16::i;:::-;25574:269;;;25605:13;25643:3;25621:49;;;25671:10;25683:5;25690:4;25696:8;25706:5;25621: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;25621: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;25621: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;25621:91:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;25621:91:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;25621:91:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;25621:91:0;;;;;;;;;;;;;;;;25605:107;;20385:10;25739:28;;25729:38;;;:6;:38;;;;25721:114;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25574:269;;25372:476;;;;;:::o;5426:130::-;5486:24;5502:7;5486:8;:15;;:24;;;;:::i;:::-;5540:7;5526:22;;;;;;;;;;;;5426:130;:::o;807:98::-;852:15;887:10;880:17;;807:98;:::o;6707:154::-;6775:32;6799:7;6775:16;:23;;:32;;;;:::i;:::-;6845:7;6823:30;;;;;;;;;;;;6707:154;:::o;32621:401::-;32764:31;32787:7;32764:8;:13;32773:3;32764:13;;;;;;;;;;;;;;;:18;32778:3;32764:18;;;;;;;;;;;;:22;;:31;;;;:::i;:::-;32743:8;:13;32752:3;32743:13;;;;;;;;;;;;;;;:18;32757:3;32743:18;;;;;;;;;;;:52;;;;32869:3;32828:59;;32863:3;32828:59;;32843:10;32828:59;;;32874:3;32879:7;32828:59;;;;;;;;;;;;;;;;;;;;;;;;32954:62;32985:3;32991;32996;33001:7;33010:5;32954:22;:62::i;:::-;32621:401;;;;:::o;8801:163::-;8859:7;8875:9;8891:1;8887;:5;8875:17;;8912:1;8907;:6;;8899:41;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8956:1;8949:8;;;8801:163;;;;:::o;6553:146::-;6618:29;6639:7;6618:16;:20;;:29;;;;:::i;:::-;6683:7;6663:28;;;;;;;;;;;;6553:146;:::o;31092:123::-;31190:19;31172:15;:37;;;;;;;;;;;;:::i;:::-;;31092:123;:::o;5296:122::-;5353:21;5366:7;5353:8;:12;;:21;;;;:::i;:::-;5402:7;5390:20;;;;;;;;;;;;5296:122;:::o;4354:203::-;4426:4;4470:1;4451:21;;:7;:21;;;;4443:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4529:4;:11;;:20;4541:7;4529:20;;;;;;;;;;;;;;;;;;;;;;;;;4522:27;;4354:203;;;;:::o;42078:97::-;42127:7;42148:22;42168:1;42148:15;;:19;;:22;;;;:::i;:::-;42141:29;;42078:97;:::o;42242:68::-;42288:15;;:17;;;;;;;;;;;;;42242:68::o;26682:163::-;26777:15;26811:9;:17;26821:6;26811:17;;;;;;;;;;;;;;;:28;26829:9;26811:28;;;;;;;;;;;;;;;;;;;;;;;;;26804:35;;26682:163;;;;:::o;23343:376::-;23499:33;23524:7;23499:8;:15;23508:5;23499:15;;;;;;;;;;;;;;;:20;23515:3;23499:20;;;;;;;;;;;;:24;;:33;;;;:::i;:::-;23476:8;:15;23485:5;23476:15;;;;;;;;;;;;;;;:20;23492:3;23476:20;;;;;;;;;;;:56;;;;23579:31;23602:7;23579:8;:13;23588:3;23579:13;;;;;;;;;;;;;;;:18;23593:3;23579:18;;;;;;;;;;;;:22;;:31;;;;:::i;:::-;23558:8;:13;23567:3;23558:13;;;;;;;;;;;;;;;:18;23572:3;23558:18;;;;;;;;;;;:52;;;;23695:3;23661:52;;23688:5;23661:52;;23676:10;23661:52;;;23700:3;23705:7;23661:52;;;;;;;;;;;;;;;;;;;;;;;;23343:376;;;;:::o;23832:429::-;24009:16;:3;:14;;;:16::i;:::-;24005:251;;;24036:13;24074:3;24052:44;;;24097:10;24109:5;24116:3;24121:7;24130:5;24052: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;24052:84:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;24052:84:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;24052:84:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;24052:84:0;;;;;;;;;;;;;;;;24036:100;;20314:10;24163:22;;24153:32;;;:6;:32;;;;24145:103;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24005:251;;23832:429;;;;;:::o;3335:229::-;3429:1;3409:22;;:8;:22;;;;3401:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3519:8;3490:38;;3511:6;;;;;;;;;;;3490:38;;;;;;;;;;;;3548:8;3539:6;;:17;;;;;;;;;;;;;;;;;;3335:229;:::o;35605:850::-;35756:13;35776:16;35801:2;35776:28;;35809:16;35834:2;35809:28;;35842:16;35867:2;35842:28;;35875:16;35900:2;35875:28;;35908:16;35933:2;35908:28;;35941:19;36026:3;:10;36013:3;:10;36000:3;:10;35987:3;:10;35974:3;:10;:23;:36;:49;:62;35963: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;35963:74:0;;;;35941:96;;36042:19;36070:5;36042:34;;36081:9;36093:1;36081:13;;36104:9;36116:1;36104:13;;36099:61;36123:3;:10;36119:1;:14;36099:61;;;36154:3;36158:1;36154:6;;;;;;;;;;;;;;;;36140;36147:3;;;;;;36140:11;;;;;;;;;;;:20;;;;;;;;;;;36135:3;;;;;;;36099:61;;;;36170:9;36182:1;36170:13;;36165:61;36189:3;:10;36185:1;:14;36165:61;;;36220:3;36224:1;36220:6;;;;;;;;;;;;;;;;36206;36213:3;;;;;;36206:11;;;;;;;;;;;:20;;;;;;;;;;;36201:3;;;;;;;36165:61;;;;36236:9;36248:1;36236:13;;36231:61;36255:3;:10;36251:1;:14;36231:61;;;36286:3;36290:1;36286:6;;;;;;;;;;;;;;;;36272;36279:3;;;;;;36272:11;;;;;;;;;;;:20;;;;;;;;;;;36267:3;;;;;;;36231:61;;;;36302:9;36314:1;36302:13;;36297:61;36321:3;:10;36317:1;:14;36297:61;;;36352:3;36356:1;36352:6;;;;;;;;;;;;;;;;36338;36345:3;;;;;;36338:11;;;;;;;;;;;:20;;;;;;;;;;;36333:3;;;;;;;36297:61;;;;36368:9;36380:1;36368:13;;36363:61;36387:3;:10;36383:1;:14;36363:61;;;36418:3;36422:1;36418:6;;;;;;;;;;;;;;;;36404;36411:3;;;;;;36404:11;;;;;;;;;;;:20;;;;;;;;;;;36399:3;;;;;;;36363:61;;;;36443:6;36429:21;;;;;;;;;;35605:850;;;;;;;:::o;8558:163::-;8616:7;8645:1;8640;:6;;8632:42;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8681:9;8697:1;8693;:5;8681:17;;8714:1;8707:8;;;8558:163;;;;:::o;19256:673::-;19316:4;19329:16;19352:19;19374:66;19352:88;;;;19856:7;19844:20;19832:32;;19892:3;19880:15;;:8;:15;;:42;;;;;19911:11;19899:8;:23;;19880:42;19872:51;;;;19256:673;;;:::o;4076:183::-;4156:18;4160:4;4166:7;4156:3;:18::i;:::-;4148:64;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4246:5;4223:4;:11;;:20;4235:7;4223:20;;;;;;;;;;;;;;;;:28;;;;;;;;;;;;;;;;;;4076:183;;:::o;3818:178::-;3896:18;3900:4;3906:7;3896:3;:18::i;:::-;3895:19;3887:63;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3984:4;3961;:11;;:20;3973:7;3961:20;;;;;;;;;;;;;;;;:27;;;;;;;;;;;;;;;;;;3818:178;;:::o;42404:382::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o
Swarm Source
ipfs://9931c6e7ff38336fffba7f5653496d14618202af68cef6b9057efc2d86abe28c
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.