ERC-1155
Overview
Max Total Supply
0 ToshimonMinter
Holders
1,750
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:
ToshimonMinter
Compiler Version
v0.6.6+commit.6c089d02
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2020-12-09 */ // File: node_modules\@openzeppelin\contracts\introspection\IERC165.sol // SPDX-License-Identifier: MIT pragma solidity ^0.6.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 _interfaceID) external view returns (bool); } // File: node_modules\@openzeppelin\contracts\token\ERC1155\IERC1155.sol // SPDX-License-Identifier: MIT pragma solidity ^0.6.2; /** * @dev Required interface of an ERC1155 compliant contract, as defined in the * https://eips.ethereum.org/EIPS/eip-1155[EIP]. * * _Available since v3.1._ */ interface IERC1155 is IERC165 { /** * @dev Emitted when `value` tokens of token type `id` are transfered from `from` to `to` by `operator`. */ event TransferSingle(address indexed operator, address indexed from, address indexed to, uint256 id, uint256 value); /** * @dev Equivalent to multiple {TransferSingle} events, where `operator`, `from` and `to` are the same for all * transfers. */ event TransferBatch(address indexed operator, address indexed from, address indexed to, uint256[] ids, uint256[] values); /** * @dev Emitted when `account` grants or revokes permission to `operator` to transfer their tokens, according to * `approved`. */ event ApprovalForAll(address indexed account, address indexed operator, bool approved); /** * @dev Emitted when the URI for token type `id` changes to `value`, if it is a non-programmatic URI. * * If an {URI} event was emitted for `id`, the standard * https://eips.ethereum.org/EIPS/eip-1155#metadata-extensions[guarantees] that `value` will equal the value * returned by {IERC1155MetadataURI-uri}. */ event URI(string value, uint256 indexed id); /** * @dev Returns the amount of tokens of token type `id` owned by `account`. * * Requirements: * * - `account` cannot be the zero address. */ function balanceOf(address account, uint256 id) external view returns (uint256); /** * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {balanceOf}. * * Requirements: * * - `accounts` and `ids` must have the same length. */ function balanceOfBatch(address[] calldata accounts, uint256[] calldata ids) external view returns (uint256[] memory); /** * @dev Grants or revokes permission to `operator` to transfer the caller's tokens, according to `approved`, * * Emits an {ApprovalForAll} event. * * Requirements: * * - `operator` cannot be the caller. */ function setApprovalForAll(address operator, bool approved) external; /** * @dev Returns true if `operator` is approved to transfer ``account``'s tokens. * * See {setApprovalForAll}. */ function isApprovedForAll(address account, address operator) external view returns (bool); /** * @dev Transfers `amount` tokens of token type `id` from `from` to `to`. * * Emits a {TransferSingle} event. * * Requirements: * * - `to` cannot be the zero address. * - If the caller is not `from`, it must be have been approved to spend ``from``'s tokens via {setApprovalForAll}. * - `from` must have a balance of tokens of type `id` of at least `amount`. * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the * acceptance magic value. */ function safeTransferFrom(address from, address to, uint256 id, uint256 amount, bytes calldata data) external; /** * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {safeTransferFrom}. * * Emits a {TransferBatch} event. * * Requirements: * * - `ids` and `amounts` must have the same length. * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the * acceptance magic value. */ function safeBatchTransferFrom(address from, address to, uint256[] calldata ids, uint256[] calldata amounts, bytes calldata data) external; } // File: node_modules\@openzeppelin\contracts\token\ERC1155\IERC1155MetadataURI.sol // SPDX-License-Identifier: MIT pragma solidity ^0.6.2; /** * @dev Interface of the optional ERC1155MetadataExtension interface, as defined * in the https://eips.ethereum.org/EIPS/eip-1155#metadata-extensions[EIP]. * * _Available since v3.1._ */ interface IERC1155MetadataURI is IERC1155 { /** * @dev Returns the URI for token type `id`. * * If the `\{id\}` substring is present in the URI, it must be replaced by * clients with the actual token type ID. */ function uri(uint256 id) external view returns (string memory); } // File: node_modules\@openzeppelin\contracts\token\ERC1155\IERC1155Receiver.sol // SPDX-License-Identifier: MIT pragma solidity ^0.6.0; /** * _Available since v3.1._ */ interface IERC1155Receiver is IERC165 { /** @dev Handles the receipt of a single ERC1155 token type. This function is called at the end of a `safeTransferFrom` after the balance has been updated. To accept the transfer, this must return `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))` (i.e. 0xf23a6e61, or its own function selector). @param operator The address which initiated the transfer (i.e. msg.sender) @param from The address which previously owned the token @param id The ID of the token being transferred @param value The amount of tokens being transferred @param data Additional data with no specified format @return `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))` if transfer is allowed */ function onERC1155Received( address operator, address from, uint256 id, uint256 value, bytes calldata data ) external returns(bytes4); /** @dev Handles the receipt of a multiple ERC1155 token types. This function is called at the end of a `safeBatchTransferFrom` after the balances have been updated. To accept the transfer(s), this must return `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))` (i.e. 0xbc197c81, or its own function selector). @param operator The address which initiated the batch transfer (i.e. msg.sender) @param from The address which previously owned the token @param ids An array containing ids of each token being transferred (order and length must match values array) @param values An array containing amounts of each token being transferred (order and length must match ids array) @param data Additional data with no specified format @return `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))` if transfer is allowed */ function onERC1155BatchReceived( address operator, address from, uint256[] calldata ids, uint256[] calldata values, bytes calldata data ) external returns(bytes4); } // File: node_modules\@openzeppelin\contracts\GSN\Context.sol // SPDX-License-Identifier: MIT pragma solidity ^0.6.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. */ abstract contract Context { function _msgSender() internal view virtual returns (address payable) { return msg.sender; } function _msgData() internal view virtual returns (bytes memory) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } } // File: node_modules\@openzeppelin\contracts\introspection\ERC165.sol // SPDX-License-Identifier: MIT pragma solidity ^0.6.0; /** * @dev Implementation of the {IERC165} interface. * * Contracts may inherit from this and call {_registerInterface} to declare * their support of an interface. */ contract ERC165 is IERC165 { /* * bytes4(keccak256('supportsInterface(bytes4)')) == 0x01ffc9a7 */ bytes4 private constant _INTERFACE_ID_ERC165 = 0x01ffc9a7; /** * @dev Mapping of interface ids to whether or not it's supported. */ mapping(bytes4 => bool) private _supportedInterfaces; constructor () internal { // Derived contracts need only register support for their own interfaces, // we register support for ERC165 itself here _registerInterface(_INTERFACE_ID_ERC165); } /** * @dev See {IERC165-supportsInterface}. * * Time complexity O(1), guaranteed to always use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) public view override returns (bool) { return _supportedInterfaces[interfaceId]; } /** * @dev Registers the contract as an implementer of the interface defined by * `interfaceId`. Support of the actual ERC165 interface is automatic and * registering its interface id is not required. * * See {IERC165-supportsInterface}. * * Requirements: * * - `interfaceId` cannot be the ERC165 invalid interface (`0xffffffff`). */ function _registerInterface(bytes4 interfaceId) internal virtual { require(interfaceId != 0xffffffff, "ERC165: invalid interface id"); _supportedInterfaces[interfaceId] = true; } } // File: node_modules\@openzeppelin\contracts\math\SafeMath.sol // SPDX-License-Identifier: MIT pragma solidity ^0.6.0; /** * @dev Wrappers over Solidity's arithmetic operations with added overflow * checks. * * Arithmetic operations in Solidity wrap on overflow. This can easily result * in bugs, because programmers usually assume that an overflow raises an * error, which is the standard behavior in high level programming languages. * `SafeMath` restores this intuition by reverting the transaction when an * operation overflows. * * Using this library instead of the unchecked operations eliminates an entire * class of bugs, so it's recommended to use it always. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { uint256 c = a + b; require(c >= a, "SafeMath: addition overflow"); return c; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return sub(a, b, "SafeMath: subtraction overflow"); } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b <= a, errorMessage); uint256 c = a - b; return c; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) { return 0; } uint256 c = a * b; require(c / a == b, "SafeMath: multiplication overflow"); return c; } /** * @dev Returns the integer division of two unsigned integers. Reverts on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return div(a, b, "SafeMath: division by zero"); } /** * @dev Returns the integer division of two unsigned integers. Reverts with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b > 0, errorMessage); uint256 c = a / b; // assert(a == b * c + a % b); // There is no case in which this doesn't hold return c; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return mod(a, b, "SafeMath: modulo by zero"); } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts with custom message when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b != 0, errorMessage); return a % b; } } // File: node_modules\@openzeppelin\contracts\utils\Address.sol // SPDX-License-Identifier: MIT pragma solidity ^0.6.2; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // According to EIP-1052, 0x0 is the value returned for not-yet created accounts // and 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470 is returned // for accounts without code, i.e. `keccak256('')` bytes32 codehash; bytes32 accountHash = 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470; // solhint-disable-next-line no-inline-assembly assembly { codehash := extcodehash(account) } return (codehash != accountHash && codehash != 0x0); } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); // solhint-disable-next-line avoid-low-level-calls, avoid-call-value (bool success, ) = recipient.call{ value: amount }(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain`call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) { return _functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue(address target, bytes memory data, uint256 value, string memory errorMessage) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); return _functionCallWithValue(target, data, value, errorMessage); } function _functionCallWithValue(address target, bytes memory data, uint256 weiValue, string memory errorMessage) private returns (bytes memory) { require(isContract(target), "Address: call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.call{ value: weiValue }(data); if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly // solhint-disable-next-line no-inline-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File: @openzeppelin\contracts\token\ERC1155\ERC1155.sol // SPDX-License-Identifier: MIT pragma solidity ^0.6.0; /** * * @dev Implementation of the basic standard multi-token. * See https://eips.ethereum.org/EIPS/eip-1155 * Originally based on code by Enjin: https://github.com/enjin/erc-1155 * * _Available since v3.1._ */ contract ERC1155 is Context, ERC165, IERC1155, IERC1155MetadataURI { using SafeMath for uint256; using Address for address; // Mapping from token ID to account balances mapping (uint256 => mapping(address => uint256)) internal _balances; // Mapping from account to operator approvals mapping (address => mapping(address => bool)) private _operatorApprovals; // Used as the URI for all token types by relying on ID substition, e.g. https://token-cdn-domain/{id}.json string private _uri; /* * bytes4(keccak256('balanceOf(address,uint256)')) == 0x00fdd58e * bytes4(keccak256('balanceOfBatch(address[],uint256[])')) == 0x4e1273f4 * bytes4(keccak256('setApprovalForAll(address,bool)')) == 0xa22cb465 * bytes4(keccak256('isApprovedForAll(address,address)')) == 0xe985e9c5 * bytes4(keccak256('safeTransferFrom(address,address,uint256,uint256,bytes)')) == 0xf242432a * bytes4(keccak256('safeBatchTransferFrom(address,address,uint256[],uint256[],bytes)')) == 0x2eb2c2d6 * * => 0x00fdd58e ^ 0x4e1273f4 ^ 0xa22cb465 ^ * 0xe985e9c5 ^ 0xf242432a ^ 0x2eb2c2d6 == 0xd9b67a26 */ bytes4 private constant _INTERFACE_ID_ERC1155 = 0xd9b67a26; /* * bytes4(keccak256('uri(uint256)')) == 0x0e89341c */ bytes4 private constant _INTERFACE_ID_ERC1155_METADATA_URI = 0x0e89341c; /** * @dev See {_setURI}. */ constructor (string memory uri) public { _setURI(uri); // register the supported interfaces to conform to ERC1155 via ERC165 _registerInterface(_INTERFACE_ID_ERC1155); // register the supported interfaces to conform to ERC1155MetadataURI via ERC165 _registerInterface(_INTERFACE_ID_ERC1155_METADATA_URI); } /** * @dev See {IERC1155MetadataURI-uri}. * * This implementation returns the same URI for *all* token types. It relies * on the token type ID substituion mechanism * https://eips.ethereum.org/EIPS/eip-1155#metadata[defined in the EIP]. * * Clients calling this function must replace the `\{id\}` substring with the * actual token type ID. */ function uri(uint256) public view virtual override returns (string memory) { return _uri; } /** * @dev See {IERC1155-balanceOf}. * * Requirements: * * - `account` cannot be the zero address. */ function balanceOf(address account, uint256 id) public view override returns (uint256) { require(account != address(0), "ERC1155: balance query for the zero address"); return _balances[id][account]; } /** * @dev See {IERC1155-balanceOfBatch}. * * Requirements: * * - `accounts` and `ids` must have the same length. */ function balanceOfBatch( address[] memory accounts, uint256[] memory ids ) public view override returns (uint256[] memory) { require(accounts.length == ids.length, "ERC1155: accounts and ids length mismatch"); uint256[] memory batchBalances = new uint256[](accounts.length); for (uint256 i = 0; i < accounts.length; ++i) { require(accounts[i] != address(0), "ERC1155: batch balance query for the zero address"); batchBalances[i] = _balances[ids[i]][accounts[i]]; } return batchBalances; } /** * @dev See {IERC1155-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { require(_msgSender() != operator, "ERC1155: setting approval status for self"); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC1155-isApprovedForAll}. */ function isApprovedForAll(address account, address operator) public view virtual override returns (bool) { return _operatorApprovals[account][operator]; } /** * @dev See {IERC1155-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 id, uint256 amount, bytes memory data ) public virtual override { require(to != address(0), "ERC1155: transfer to the zero address"); require( from == _msgSender() || isApprovedForAll(from, _msgSender()), "ERC1155: caller is not owner nor approved" ); address operator = _msgSender(); _beforeTokenTransfer(operator, from, to, _asSingletonArray(id), _asSingletonArray(amount), data); _balances[id][from] = _balances[id][from].sub(amount, "ERC1155: insufficient balance for transfer"); _balances[id][to] = _balances[id][to].add(amount); emit TransferSingle(operator, from, to, id, amount); _doSafeTransferAcceptanceCheck(operator, from, to, id, amount, data); } /** * @dev See {IERC1155-safeBatchTransferFrom}. */ function safeBatchTransferFrom( address from, address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) public virtual override { require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch"); require(to != address(0), "ERC1155: transfer to the zero address"); require( from == _msgSender() || isApprovedForAll(from, _msgSender()), "ERC1155: transfer caller is not owner nor approved" ); address operator = _msgSender(); _beforeTokenTransfer(operator, from, to, ids, amounts, data); for (uint256 i = 0; i < ids.length; ++i) { uint256 id = ids[i]; uint256 amount = amounts[i]; _balances[id][from] = _balances[id][from].sub( amount, "ERC1155: insufficient balance for transfer" ); _balances[id][to] = _balances[id][to].add(amount); } emit TransferBatch(operator, from, to, ids, amounts); _doSafeBatchTransferAcceptanceCheck(operator, from, to, ids, amounts, data); } /** * @dev Sets a new URI for all token types, by relying on the token type ID * substituion mechanism * https://eips.ethereum.org/EIPS/eip-1155#metadata[defined in the EIP]. * * By this mechanism, any occurence of the `\{id\}` substring in either the * URI or any of the amounts in the JSON file at said URI will be replaced by * clients with the token type ID. * * For example, the `https://token-cdn-domain/\{id\}.json` URI would be * interpreted by clients as * `https://token-cdn-domain/000000000000000000000000000000000000000000000000000000000004cce0.json` * for token type ID 0x4cce0. * * See {uri}. * * Because these URIs cannot be meaningfully represented by the {URI} event, * this function emits no events. */ function _setURI(string memory newuri) internal virtual { _uri = newuri; } /** * @dev Creates `amount` tokens of token type `id`, and assigns them to `account`. * * Emits a {TransferSingle} event. * * Requirements: * * - `account` cannot be the zero address. * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the * acceptance magic value. */ function _mint(address account, uint256 id, uint256 amount, bytes memory data) internal virtual { require(account != address(0), "ERC1155: mint to the zero address"); address operator = _msgSender(); _beforeTokenTransfer(operator, address(0), account, _asSingletonArray(id), _asSingletonArray(amount), data); _balances[id][account] = _balances[id][account].add(amount); emit TransferSingle(operator, address(0), account, id, amount); _doSafeTransferAcceptanceCheck(operator, address(0), account, id, amount, data); } /** * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_mint}. * * Requirements: * * - `ids` and `amounts` must have the same length. * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the * acceptance magic value. */ function _mintBatch(address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data) internal virtual { require(to != address(0), "ERC1155: mint to the zero address"); require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch"); address operator = _msgSender(); _beforeTokenTransfer(operator, address(0), to, ids, amounts, data); for (uint i = 0; i < ids.length; i++) { _balances[ids[i]][to] = amounts[i].add(_balances[ids[i]][to]); } emit TransferBatch(operator, address(0), to, ids, amounts); _doSafeBatchTransferAcceptanceCheck(operator, address(0), to, ids, amounts, data); } /** * @dev Destroys `amount` tokens of token type `id` from `account` * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens of token type `id`. */ function _burn(address account, uint256 id, uint256 amount) internal virtual { require(account != address(0), "ERC1155: burn from the zero address"); address operator = _msgSender(); _beforeTokenTransfer(operator, account, address(0), _asSingletonArray(id), _asSingletonArray(amount), ""); _balances[id][account] = _balances[id][account].sub( amount, "ERC1155: burn amount exceeds balance" ); emit TransferSingle(operator, account, address(0), id, amount); } /** * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_burn}. * * Requirements: * * - `ids` and `amounts` must have the same length. */ function _burnBatch(address account, uint256[] memory ids, uint256[] memory amounts) internal virtual { require(account != address(0), "ERC1155: burn from the zero address"); require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch"); address operator = _msgSender(); _beforeTokenTransfer(operator, account, address(0), ids, amounts, ""); for (uint i = 0; i < ids.length; i++) { _balances[ids[i]][account] = _balances[ids[i]][account].sub( amounts[i], "ERC1155: burn amount exceeds balance" ); } emit TransferBatch(operator, account, address(0), ids, amounts); } /** * @dev Hook that is called before any token transfer. This includes minting * and burning, as well as batched variants. * * The same hook is called on both single and batched variants. For single * transfers, the length of the `id` and `amount` arrays will be 1. * * Calling conditions (for each `id` and `amount` pair): * * - When `from` and `to` are both non-zero, `amount` of ``from``'s tokens * of token type `id` will be transferred to `to`. * - When `from` is zero, `amount` tokens of token type `id` will be minted * for `to`. * - when `to` is zero, `amount` of ``from``'s tokens of token type `id` * will be burned. * - `from` and `to` are never both zero. * - `ids` and `amounts` have the same, non-zero length. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address operator, address from, address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) internal virtual { } function _doSafeTransferAcceptanceCheck( address operator, address from, address to, uint256 id, uint256 amount, bytes memory data ) internal { if (to.isContract()) { try IERC1155Receiver(to).onERC1155Received(operator, from, id, amount, data) returns (bytes4 response) { if (response != IERC1155Receiver(to).onERC1155Received.selector) { revert("ERC1155: ERC1155Receiver rejected tokens"); } } catch Error(string memory reason) { revert(reason); } catch { revert("ERC1155: transfer to non ERC1155Receiver implementer"); } } } function _doSafeBatchTransferAcceptanceCheck( address operator, address from, address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) internal { if (to.isContract()) { try IERC1155Receiver(to).onERC1155BatchReceived(operator, from, ids, amounts, data) returns (bytes4 response) { if (response != IERC1155Receiver(to).onERC1155BatchReceived.selector) { revert("ERC1155: ERC1155Receiver rejected tokens"); } } catch Error(string memory reason) { revert(reason); } catch { revert("ERC1155: transfer to non ERC1155Receiver implementer"); } } } function _asSingletonArray(uint256 element) private pure returns (uint256[] memory) { uint256[] memory array = new uint256[](1); array[0] = element; return array; } } // File: node_modules\@openzeppelin\contracts\utils\EnumerableSet.sol // SPDX-License-Identifier: MIT pragma solidity ^0.6.0; /** * @dev Library for managing * https://en.wikipedia.org/wiki/Set_(abstract_data_type)[sets] of primitive * types. * * Sets have the following properties: * * - Elements are added, removed, and checked for existence in constant time * (O(1)). * - Elements are enumerated in O(n). No guarantees are made on the ordering. * * ``` * contract Example { * // Add the library methods * using EnumerableSet for EnumerableSet.AddressSet; * * // Declare a set state variable * EnumerableSet.AddressSet private mySet; * } * ``` * * As of v3.0.0, only sets of type `address` (`AddressSet`) and `uint256` * (`UintSet`) are supported. */ library EnumerableSet { // To implement this library for multiple types with as little code // repetition as possible, we write it in terms of a generic Set type with // bytes32 values. // The Set implementation uses private functions, and user-facing // implementations (such as AddressSet) are just wrappers around the // underlying Set. // This means that we can only create new EnumerableSets for types that fit // in bytes32. struct Set { // Storage of set values bytes32[] _values; // Position of the value in the `values` array, plus 1 because index 0 // means a value is not in the set. mapping (bytes32 => uint256) _indexes; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function _add(Set storage set, bytes32 value) private returns (bool) { if (!_contains(set, value)) { set._values.push(value); // The value is stored at length-1, but we add 1 to all indexes // and use 0 as a sentinel value set._indexes[value] = set._values.length; return true; } else { return false; } } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function _remove(Set storage set, bytes32 value) private returns (bool) { // We read and store the value's index to prevent multiple reads from the same storage slot uint256 valueIndex = set._indexes[value]; if (valueIndex != 0) { // Equivalent to contains(set, value) // To delete an element from the _values array in O(1), we swap the element to delete with the last one in // the array, and then remove the last element (sometimes called as 'swap and pop'). // This modifies the order of the array, as noted in {at}. uint256 toDeleteIndex = valueIndex - 1; uint256 lastIndex = set._values.length - 1; // When the value to delete is the last one, the swap operation is unnecessary. However, since this occurs // so rarely, we still do the swap anyway to avoid the gas cost of adding an 'if' statement. bytes32 lastvalue = set._values[lastIndex]; // Move the last value to the index where the value to delete is set._values[toDeleteIndex] = lastvalue; // Update the index for the moved value set._indexes[lastvalue] = toDeleteIndex + 1; // All indexes are 1-based // Delete the slot where the moved value was stored set._values.pop(); // Delete the index for the deleted slot delete set._indexes[value]; return true; } else { return false; } } /** * @dev Returns true if the value is in the set. O(1). */ function _contains(Set storage set, bytes32 value) private view returns (bool) { return set._indexes[value] != 0; } /** * @dev Returns the number of values on the set. O(1). */ function _length(Set storage set) private view returns (uint256) { return set._values.length; } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function _at(Set storage set, uint256 index) private view returns (bytes32) { require(set._values.length > index, "EnumerableSet: index out of bounds"); return set._values[index]; } // AddressSet struct AddressSet { Set _inner; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function add(AddressSet storage set, address value) internal returns (bool) { return _add(set._inner, bytes32(uint256(value))); } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function remove(AddressSet storage set, address value) internal returns (bool) { return _remove(set._inner, bytes32(uint256(value))); } /** * @dev Returns true if the value is in the set. O(1). */ function contains(AddressSet storage set, address value) internal view returns (bool) { return _contains(set._inner, bytes32(uint256(value))); } /** * @dev Returns the number of values in the set. O(1). */ function length(AddressSet storage set) internal view returns (uint256) { return _length(set._inner); } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function at(AddressSet storage set, uint256 index) internal view returns (address) { return address(uint256(_at(set._inner, index))); } // UintSet struct UintSet { Set _inner; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function add(UintSet storage set, uint256 value) internal returns (bool) { return _add(set._inner, bytes32(value)); } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function remove(UintSet storage set, uint256 value) internal returns (bool) { return _remove(set._inner, bytes32(value)); } /** * @dev Returns true if the value is in the set. O(1). */ function contains(UintSet storage set, uint256 value) internal view returns (bool) { return _contains(set._inner, bytes32(value)); } /** * @dev Returns the number of values on the set. O(1). */ function length(UintSet storage set) internal view returns (uint256) { return _length(set._inner); } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function at(UintSet storage set, uint256 index) internal view returns (uint256) { return uint256(_at(set._inner, index)); } } // File: @openzeppelin\contracts\access\AccessControl.sol // SPDX-License-Identifier: MIT pragma solidity ^0.6.0; /** * @dev Contract module that allows children to implement role-based access * control mechanisms. * * Roles are referred to by their `bytes32` identifier. These should be exposed * in the external API and be unique. The best way to achieve this is by * using `public constant` hash digests: * * ``` * bytes32 public constant MY_ROLE = keccak256("MY_ROLE"); * ``` * * Roles can be used to represent a set of permissions. To restrict access to a * function call, use {hasRole}: * * ``` * function foo() public { * require(hasRole(MY_ROLE, msg.sender)); * ... * } * ``` * * Roles can be granted and revoked dynamically via the {grantRole} and * {revokeRole} functions. Each role has an associated admin role, and only * accounts that have a role's admin role can call {grantRole} and {revokeRole}. * * By default, the admin role for all roles is `DEFAULT_ADMIN_ROLE`, which means * that only accounts with this role will be able to grant or revoke other * roles. More complex role relationships can be created by using * {_setRoleAdmin}. * * WARNING: The `DEFAULT_ADMIN_ROLE` is also its own admin: it has permission to * grant and revoke this role. Extra precautions should be taken to secure * accounts that have been granted it. */ abstract contract AccessControl is Context { using EnumerableSet for EnumerableSet.AddressSet; using Address for address; struct RoleData { EnumerableSet.AddressSet members; bytes32 adminRole; } mapping (bytes32 => RoleData) private _roles; bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00; /** * @dev Emitted when `newAdminRole` is set as ``role``'s admin role, replacing `previousAdminRole` * * `DEFAULT_ADMIN_ROLE` is the starting admin for all roles, despite * {RoleAdminChanged} not being emitted signaling this. * * _Available since v3.1._ */ event RoleAdminChanged(bytes32 indexed role, bytes32 indexed previousAdminRole, bytes32 indexed newAdminRole); /** * @dev Emitted when `account` is granted `role`. * * `sender` is the account that originated the contract call, an admin role * bearer except when using {_setupRole}. */ event RoleGranted(bytes32 indexed role, address indexed account, address indexed sender); /** * @dev Emitted when `account` is revoked `role`. * * `sender` is the account that originated the contract call: * - if using `revokeRole`, it is the admin role bearer * - if using `renounceRole`, it is the role bearer (i.e. `account`) */ event RoleRevoked(bytes32 indexed role, address indexed account, address indexed sender); /** * @dev Returns `true` if `account` has been granted `role`. */ function hasRole(bytes32 role, address account) public view returns (bool) { return _roles[role].members.contains(account); } /** * @dev Returns the number of accounts that have `role`. Can be used * together with {getRoleMember} to enumerate all bearers of a role. */ function getRoleMemberCount(bytes32 role) public view returns (uint256) { return _roles[role].members.length(); } /** * @dev Returns one of the accounts that have `role`. `index` must be a * value between 0 and {getRoleMemberCount}, non-inclusive. * * Role bearers are not sorted in any particular way, and their ordering may * change at any point. * * WARNING: When using {getRoleMember} and {getRoleMemberCount}, make sure * you perform all queries on the same block. See the following * https://forum.openzeppelin.com/t/iterating-over-elements-on-enumerableset-in-openzeppelin-contracts/2296[forum post] * for more information. */ function getRoleMember(bytes32 role, uint256 index) public view returns (address) { return _roles[role].members.at(index); } /** * @dev Returns the admin role that controls `role`. See {grantRole} and * {revokeRole}. * * To change a role's admin, use {_setRoleAdmin}. */ function getRoleAdmin(bytes32 role) public view returns (bytes32) { return _roles[role].adminRole; } /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function grantRole(bytes32 role, address account) internal virtual { require(hasRole(_roles[role].adminRole, _msgSender()), "AccessControl: sender must be an admin to grant"); _grantRole(role, account); } /** * @dev Revokes `role` from `account`. * * If `account` had been granted `role`, emits a {RoleRevoked} event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function revokeRole(bytes32 role, address account) public virtual { require(hasRole(_roles[role].adminRole, _msgSender()), "AccessControl: sender must be an admin to revoke"); _revokeRole(role, account); } /** * @dev Revokes `role` from the calling account. * * Roles are often managed via {grantRole} and {revokeRole}: this function's * purpose is to provide a mechanism for accounts to lose their privileges * if they are compromised (such as when a trusted device is misplaced). * * If the calling account had been granted `role`, emits a {RoleRevoked} * event. * * Requirements: * * - the caller must be `account`. */ function renounceRole(bytes32 role, address account) public virtual { require(account == _msgSender(), "AccessControl: can only renounce roles for self"); _revokeRole(role, account); } /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. Note that unlike {grantRole}, this function doesn't perform any * checks on the calling account. * * [WARNING] * ==== * This function should only be called from the constructor when setting * up the initial roles for the system. * * Using this function in any other way is effectively circumventing the admin * system imposed by {AccessControl}. * ==== */ function _setupRole(bytes32 role, address account) internal virtual { _grantRole(role, account); } /** * @dev Sets `adminRole` as ``role``'s admin role. * * Emits a {RoleAdminChanged} event. */ function _setRoleAdmin(bytes32 role, bytes32 adminRole) internal virtual { emit RoleAdminChanged(role, _roles[role].adminRole, adminRole); _roles[role].adminRole = adminRole; } function _grantRole(bytes32 role, address account) private { if (_roles[role].members.add(account)) { emit RoleGranted(role, account, _msgSender()); } } function _revokeRole(bytes32 role, address account) private { if (_roles[role].members.remove(account)) { emit RoleRevoked(role, account, _msgSender()); } } } // File: contracts\common\AccessControlMixin.sol pragma solidity 0.6.6; contract AccessControlMixin is AccessControl { string private _revertMsg; function _setupContractId(string memory contractId) internal { _revertMsg = string(abi.encodePacked(contractId, ": INSUFFICIENT_PERMISSIONS")); } modifier only(bytes32 role) { require( hasRole(role, _msgSender()), _revertMsg ); _; } } 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; } abstract contract ERC1155Tradable is ERC1155, AccessControlMixin { using Strings for string; bytes32 public constant MINTER_ROLE = keccak256("MINTER_ROLE"); bytes32 public constant WHITELIST_ADMIN_ROLE = keccak256("WHITELIST_ADMIN_ROLE"); address proxyRegistryAddress; uint256 internal _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 ERC1155('https://api.toshimon.io/cards/') { name = _name; symbol = _symbol; proxyRegistryAddress = _proxyRegistryAddress; } function addWhitelistAdmin(address account) public virtual only(DEFAULT_ADMIN_ROLE) { grantRole(WHITELIST_ADMIN_ROLE,account); } function addMinter(address account) public virtual only(DEFAULT_ADMIN_ROLE) { grantRole(MINTER_ROLE,account); } function removeWhitelistAdmin(address account) public virtual only(DEFAULT_ADMIN_ROLE) { revokeRole(WHITELIST_ADMIN_ROLE,account); } function removeMinter(address account) public virtual only(DEFAULT_ADMIN_ROLE) { revokeRole(MINTER_ROLE,account); } function uri(uint256 _id) public view virtual override returns (string memory) { require(_exists(_id), 'ERC721Tradable#uri: NONEXISTENT_TOKEN'); return Strings.strConcat(uri(_id), 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 virtual returns (uint256) { return tokenSupply[_id]; } /** * @dev Will update the base URL of token's URI * @param _newBaseMetadataURI New base URL of token's URI */ function _setBaseMetadataURI(string memory _newBaseMetadataURI) public virtual only(WHITELIST_ADMIN_ROLE) { _setURI(_newBaseMetadataURI); } function setMaxSupply(uint256 _id, uint256 _maxSupply) public only(WHITELIST_ADMIN_ROLE) { tokenMaxSupply[_id] = _maxSupply; } function create( uint256 _maxSupply, uint256 _initialSupply, string calldata _uri, bytes calldata _data ) external virtual only(WHITELIST_ADMIN_ROLE) 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; } function createBatch( uint256 _timesCreated, uint256 _maxSupply ) external virtual only(WHITELIST_ADMIN_ROLE){ uint256 _id; for (uint i = 0; i < _timesCreated; i++) { _id = _getNextTokenID(); _incrementTokenTypeId(); creators[_id] = msg.sender; tokenMaxSupply[_id] = _maxSupply; } } /** * @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 virtual only(MINTER_ROLE) { uint256 tokenId = _id; uint256 newSupply = tokenSupply[tokenId].add(_quantity); require(newSupply <= 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 - The Beano of NFTs */ function isApprovedForAll(address _owner, address _operator) public view virtual override 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 virtual 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() internal virtual view returns (uint256) { return _currentTokenID.add(1); } /** * @dev increments the value of _currentTokenID */ function _incrementTokenTypeId() internal virtual { _currentTokenID++; } /** * @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]; } } // File: contracts\child\ChildToken\ChildERC1155.sol pragma solidity 0.6.6; contract ToshimonMinter is ERC1155Tradable { using Strings for string; string private _contractURI; constructor(address _proxyRegistryAddress) public ERC1155Tradable('Toshimon Minter', 'ToshimonMinter', _proxyRegistryAddress) { proxyRegistryAddress = _proxyRegistryAddress; _setupContractId("ChildERC1155"); _setupRole(DEFAULT_ADMIN_ROLE, _msgSender()); _setupRole(MINTER_ROLE, _msgSender()); _setupRole(WHITELIST_ADMIN_ROLE, _msgSender()); _contractURI = 'https://api.toshimon.io/toshimon-erc1155'; } // This is to support Native meta transactions // never use msg.sender directly, use _msgSender() instead function setBaseMetadataURI(string memory newURI) public only(WHITELIST_ADMIN_ROLE) { _setBaseMetadataURI(newURI); } function mintBatch(address user, uint256[] calldata ids, uint256[] calldata amounts) external only(MINTER_ROLE) { _mintBatch(user, ids, amounts, ''); } function setContractURI(string memory newURI) public only(WHITELIST_ADMIN_ROLE) { _contractURI = newURI; } function contractURI() public view returns (string memory) { return _contractURI; } /** * @dev Ends minting of token * @param _id Token ID for which minting will end */ function endMinting(uint256 _id) external only(WHITELIST_ADMIN_ROLE) { tokenMaxSupply[_id] = tokenSupply[_id]; } function burn( address _account, uint256 _id, uint256 _amount ) external only(MINTER_ROLE) { require( balanceOf(_account, _id) >= _amount, 'Cannot burn more than addres has' ); _burn(_account, _id, _amount); } /** * Mint NFT and send those to the list of given addresses */ function airdrop(uint256 _id, address[] calldata _addresses) external only(MINTER_ROLE) { for (uint256 i = 0; i < _addresses.length; i++) { _mint(_addresses[i], _id, 1, ''); } } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public only(DEFAULT_ADMIN_ROLE) { _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'); grantRole(DEFAULT_ADMIN_ROLE,newOwner); revokeRole(DEFAULT_ADMIN_ROLE,getRoleMember(DEFAULT_ADMIN_ROLE,0)); } function isMinter(address account) public view returns (bool) { return hasRole(MINTER_ROLE,account); } function isOwner(address account) public view returns (bool) { return hasRole(DEFAULT_ADMIN_ROLE,account); } function isWhitelistAdmin(address account) public view returns (bool) { return hasRole(WHITELIST_ADMIN_ROLE,account); } function owner() public view returns (address) { return getRoleMember(DEFAULT_ADMIN_ROLE,0); } }
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":"account","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":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"previousAdminRole","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"newAdminRole","type":"bytes32"}],"name":"RoleAdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleGranted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleRevoked","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":"values","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":"value","type":"uint256"}],"name":"TransferSingle","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"value","type":"string"},{"indexed":true,"internalType":"uint256","name":"id","type":"uint256"}],"name":"URI","type":"event"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINTER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"WHITELIST_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseMetadataURI","type":"string"}],"name":"_setBaseMetadataURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"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":"uint256","name":"_id","type":"uint256"},{"internalType":"address[]","name":"_addresses","type":"address[]"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"}],"name":"balanceOfBatch","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_account","type":"address"},{"internalType":"uint256","name":"_id","type":"uint256"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","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":"_timesCreated","type":"uint256"},{"internalType":"uint256","name":"_maxSupply","type":"uint256"}],"name":"createBatch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"creators","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_id","type":"uint256"}],"name":"endMinting","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleAdmin","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"getRoleMember","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleMemberCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"hasRole","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":[{"internalType":"address","name":"account","type":"address"}],"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":[{"internalType":"address","name":"user","type":"address"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"}],"name":"mintBatch","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":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"revokeRole","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":"newURI","type":"string"}],"name":"setBaseMetadataURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newURI","type":"string"}],"name":"setContractURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_id","type":"uint256"},{"internalType":"uint256","name":"_maxSupply","type":"uint256"}],"name":"setMaxSupply","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
608060405260006007553480156200001657600080fd5b50604051620046ae380380620046ae833981810160405260208110156200003c57600080fd5b5051604080518082018252600f81526e2a37b9b434b6b7b71026b4b73a32b960891b60208281019190915282518084018452600e81526d2a37b9b434b6b7b726b4b73a32b960911b818301528351808501909452601e84527f68747470733a2f2f6170692e746f7368696d6f6e2e696f2f63617264732f00009184019190915290918390620000db6301ffc9a760e01b6001600160e01b036200029216565b620000ef816001600160e01b036200031716565b6200010a636cdb3d1360e11b6001600160e01b036200029216565b620001256303a24d0760e21b6001600160e01b036200029216565b5082516200013b90600b90602086019062000509565b5081516200015190600c90602085019062000509565b50600680546001600160a01b0386811693166001600160a01b03199182161716919091179055505060408051808201909152600c81526b4368696c644552433131353560a01b6020820152620001b0906001600160e01b036200033016565b620001d86000620001c96001600160e01b03620003d216565b6001600160e01b03620003d716565b604080516a4d494e5445525f524f4c4560a81b8152905190819003600b0190206200021090620001c96001600160e01b03620003d216565b604080517f57484954454c4953545f41444d494e5f524f4c45000000000000000000000000815290519081900360140190206200025a90620001c96001600160e01b03620003d216565b604051806060016040528060288152602001620046866028913980516200028a91600d9160209091019062000509565b5050620005ab565b6001600160e01b03198082161415620002f2576040805162461bcd60e51b815260206004820152601c60248201527f4552433136353a20696e76616c696420696e7465726661636520696400000000604482015290519081900360640190fd5b6001600160e01b0319166000908152602081905260409020805460ff19166001179055565b80516200032c90600390602084019062000509565b5050565b806040516020018082805190602001908083835b60208310620003655780518252601f19909201916020918201910162000344565b51815160209384036101000a60001901801990921691161790527f3a20494e53554646494349454e545f5045524d495353494f4e530000000000009190930190815260408051808303600519018152601a909201905280516200032c955060059450920191905062000509565b335b90565b6200032c82826001600160e01b03620003ec16565b60008281526004602090815260409091206200041391839062003c1762000470821b17901c565b156200032c576200042c6001600160e01b03620003d216565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b600062000490836001600160a01b0384166001600160e01b036200049916565b90505b92915050565b6000620004b083836001600160e01b03620004f116565b620004e85750815460018181018455600084815260208082209093018490558454848252828601909352604090209190915562000493565b50600062000493565b60009081526001919091016020526040902054151590565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200054c57805160ff19168380011785556200057c565b828001600101855582156200057c579182015b828111156200057c5782518255916020019190600101906200055f565b506200058a9291506200058e565b5090565b620003d491905b808211156200058a576000815560010162000595565b6140cb80620005bb6000396000f3fe608060405234801561001057600080fd5b506004361061027d5760003560e01c806391d148541161015c578063bd85b039116100ce578063d81d0a1511610087578063d81d0a1514610e07578063e8a3d48514610ed5578063e985e9c514610edd578063f242432a14610f0b578063f2fde38b14610fd4578063f5298aca14610ffa5761027d565b8063bd85b03914610d07578063bdf7a8e614610d24578063ca15c87314610d99578063cd53d08e14610db6578063d539139314610dd3578063d547741f14610ddb5761027d565b8063983b2d5611610120578063983b2d5614610b95578063a217fddf14610bbb578063a22cb46514610bc3578063aa271e1a14610bf1578063b09ddf7b14610c17578063bb5f747b14610ce15761027d565b806391d1485414610a7d57806392a2d84614610aa9578063938e3d7b14610acc57806394dd286914610b7057806395d89b4114610b8d5761027d565b806336568abe116101f5578063731133e9116101b9578063731133e91461088f5780637362d9c81461094f5780637e518ec814610975578063869f759414610a195780638da5cb5b14610a365780639010d07c14610a5a5761027d565b806336568abe1461069f57806337da577c146106cb5780634e1273f4146106ee57806354202c4e146108615780636897e974146108695761027d565b8063122f94bf11610247578063122f94bf146103b2578063248a9ca3146104585780632693ebf2146104755780632eb2c2d6146104925780632f54bf6e146106535780633092afd5146106795761027d565b80624221f014610282578062fdd58e146102b157806301ffc9a7146102dd57806306fdde03146103185780630e89341c14610395575b600080fd5b61029f6004803603602081101561029857600080fd5b503561102c565b60408051918252519081900360200190f35b61029f600480360360408110156102c757600080fd5b506001600160a01b03813516906020013561103e565b610304600480360360208110156102f357600080fd5b50356001600160e01b0319166110b0565b604080519115158252519081900360200190f35b6103206110d3565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561035a578181015183820152602001610342565b50505050905090810190601f1680156103875780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b610320600480360360208110156103ab57600080fd5b5035611161565b610456600480360360208110156103c857600080fd5b810190602081018135600160201b8111156103e257600080fd5b8201836020820111156103f457600080fd5b803590602001918460018302840111600160201b8311171561041557600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295506111c1945050505050565b005b61029f6004803603602081101561046e57600080fd5b50356112a0565b61029f6004803603602081101561048b57600080fd5b50356112b5565b610456600480360360a08110156104a857600080fd5b6001600160a01b038235811692602081013590911691810190606081016040820135600160201b8111156104db57600080fd5b8201836020820111156104ed57600080fd5b803590602001918460208302840111600160201b8311171561050e57600080fd5b9190808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152509295949360208101935035915050600160201b81111561055d57600080fd5b82018360208201111561056f57600080fd5b803590602001918460208302840111600160201b8311171561059057600080fd5b9190808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152509295949360208101935035915050600160201b8111156105df57600080fd5b8201836020820111156105f157600080fd5b803590602001918460018302840111600160201b8311171561061257600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295506112c7945050505050565b6103046004803603602081101561066957600080fd5b50356001600160a01b03166115c5565b6104566004803603602081101561068f57600080fd5b50356001600160a01b03166115d1565b610456600480360360408110156106b557600080fd5b50803590602001356001600160a01b0316611670565b610456600480360360408110156106e157600080fd5b50803590602001356116d1565b6108116004803603604081101561070457600080fd5b810190602081018135600160201b81111561071e57600080fd5b82018360208201111561073057600080fd5b803590602001918460208302840111600160201b8311171561075157600080fd5b9190808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152509295949360208101935035915050600160201b8111156107a057600080fd5b8201836020820111156107b257600080fd5b803590602001918460208302840111600160201b831117156107d357600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250929550611777945050505050565b60408051602080825283518183015283519192839290830191858101910280838360005b8381101561084d578181015183820152602001610835565b505050509050019250505060405180910390f35b61029f6118f5565b6104566004803603602081101561087f57600080fd5b50356001600160a01b0316611918565b610456600480360360808110156108a557600080fd5b6001600160a01b038235169160208101359160408201359190810190608081016060820135600160201b8111156108db57600080fd5b8201836020820111156108ed57600080fd5b803590602001918460018302840111600160201b8311171561090e57600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295506119b7945050505050565b6104566004803603602081101561096557600080fd5b50356001600160a01b0316611b0d565b6104566004803603602081101561098b57600080fd5b810190602081018135600160201b8111156109a557600080fd5b8201836020820111156109b757600080fd5b803590602001918460018302840111600160201b831117156109d857600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550611bac945050505050565b61029f60048036036020811015610a2f57600080fd5b5035611c48565b610a3e611c5a565b604080516001600160a01b039092168252519081900360200190f35b610a3e60048036036040811015610a7057600080fd5b5080359060200135611c6c565b61030460048036036040811015610a9357600080fd5b50803590602001356001600160a01b0316611c91565b61045660048036036040811015610abf57600080fd5b5080359060200135611caf565b61045660048036036020811015610ae257600080fd5b810190602081018135600160201b811115610afc57600080fd5b820183602082011115610b0e57600080fd5b803590602001918460018302840111600160201b83111715610b2f57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550611d9a945050505050565b61045660048036036020811015610b8657600080fd5b5035611e45565b610320611ef6565b61045660048036036020811015610bab57600080fd5b50356001600160a01b0316611f51565b61029f611ff0565b61045660048036036040811015610bd957600080fd5b506001600160a01b0381351690602001351515611ff5565b61030460048036036020811015610c0757600080fd5b50356001600160a01b03166120e4565b61029f60048036036080811015610c2d57600080fd5b813591602081013591810190606081016040820135600160201b811115610c5357600080fd5b820183602082011115610c6557600080fd5b803590602001918460018302840111600160201b83111715610c8657600080fd5b919390929091602081019035600160201b811115610ca357600080fd5b820183602082011115610cb557600080fd5b803590602001918460018302840111600160201b83111715610cd657600080fd5b509092509050612111565b61030460048036036020811015610cf757600080fd5b50356001600160a01b03166122f3565b61029f60048036036020811015610d1d57600080fd5b5035612320565b61045660048036036040811015610d3a57600080fd5b81359190810190604081016020820135600160201b811115610d5b57600080fd5b820183602082011115610d6d57600080fd5b803590602001918460208302840111600160201b83111715610d8e57600080fd5b509092509050612332565b61029f60048036036020811015610daf57600080fd5b503561240f565b610a3e60048036036020811015610dcc57600080fd5b5035612426565b61029f612441565b61045660048036036040811015610df157600080fd5b50803590602001356001600160a01b0316612464565b61045660048036036060811015610e1d57600080fd5b6001600160a01b038235169190810190604081016020820135600160201b811115610e4757600080fd5b820183602082011115610e5957600080fd5b803590602001918460208302840111600160201b83111715610e7a57600080fd5b919390929091602081019035600160201b811115610e9757600080fd5b820183602082011115610ea957600080fd5b803590602001918460208302840111600160201b83111715610eca57600080fd5b5090925090506124bd565b6103206125cc565b61030460048036036040811015610ef357600080fd5b506001600160a01b0381358116916020013516612662565b610456600480360360a0811015610f2157600080fd5b6001600160a01b03823581169260208101359091169160408201359160608101359181019060a081016080820135600160201b811115610f6057600080fd5b820183602082011115610f7257600080fd5b803590602001918460018302840111600160201b83111715610f9357600080fd5b91908080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525092955061270d945050505050565b61045660048036036020811015610fea57600080fd5b50356001600160a01b03166128de565b6104566004803603606081101561101057600080fd5b506001600160a01b03813516906020810135906040013561295c565b600a6020526000908152604090205481565b60006001600160a01b0383166110855760405162461bcd60e51b815260040180806020018281038252602b815260200180613db7602b913960400191505060405180910390fd5b5060008181526001602090815260408083206001600160a01b03861684529091529020545b92915050565b6001600160e01b0319811660009081526020819052604090205460ff165b919050565b600b805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156111595780601f1061112e57610100808354040283529160200191611159565b820191906000526020600020905b81548152906001019060200180831161113c57829003601f168201915b505050505081565b606061116c82612a5e565b6111a75760405162461bcd60e51b8152600401808060200182810382526025815260200180613f5a6025913960400191505060405180910390fd5b6110aa6111b383611161565b6111bc84612a7b565b612b53565b60408051600080516020614047833981519152815290519081900360140190206111f2816111ed612b8f565b611c91565b6005906112925760405162461bcd60e51b81526020600482019081528254600260001961010060018416150201909116046024830181905290918291604490910190849080156112835780601f1061125857610100808354040283529160200191611283565b820191906000526020600020905b81548152906001019060200180831161126657829003601f168201915b50509250505060405180910390fd5b5061129c82612b93565b5050565b60009081526004602052604090206002015490565b60096020526000908152604090205481565b81518351146113075760405162461bcd60e51b8152600401808060200182810382526028815260200180613ffe6028913960400191505060405180910390fd5b6001600160a01b03841661134c5760405162461bcd60e51b8152600401808060200182810382526025815260200180613eb66025913960400191505060405180910390fd5b611354612b8f565b6001600160a01b0316856001600160a01b0316148061137f575061137f8561137a612b8f565b612662565b6113ba5760405162461bcd60e51b8152600401808060200182810382526032815260200180613edb6032913960400191505060405180910390fd5b60006113c4612b8f565b90506113d48187878787876115bd565b60005b84518110156114d55760008582815181106113ee57fe5b60200260200101519050600085838151811061140657fe5b60200260200101519050611473816040518060600160405280602a8152602001613f30602a91396001600086815260200190815260200160002060008d6001600160a01b03166001600160a01b0316815260200190815260200160002054612ba69092919063ffffffff16565b60008381526001602090815260408083206001600160a01b038e811685529252808320939093558a16815220546114aa9082612c3d565b60009283526001602081815260408086206001600160a01b038d1687529091529093205550016113d7565b50846001600160a01b0316866001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051808060200180602001838103835285818151815260200191508051906020019060200280838360005b8381101561155b578181015183820152602001611543565b50505050905001838103825284818151815260200191508051906020019060200280838360005b8381101561159a578181015183820152602001611582565b5050505090500194505050505060405180910390a46115bd818787878787612c97565b505050505050565b60006110aa8183611c91565b60006115df816111ed612b8f565b6005906116455760405162461bcd60e51b81526020600482019081528254600260001961010060018416150201909116046024830181905290918291604490910190849080156112835780601f1061125857610100808354040283529160200191611283565b50604080516a4d494e5445525f524f4c4560a81b8152905190819003600b01902061129c9083612464565b611678612b8f565b6001600160a01b0316816001600160a01b0316146116c75760405162461bcd60e51b815260040180806020018281038252602f815260200180614067602f913960400191505060405180910390fd5b61129c8282612fd5565b60408051600080516020614047833981519152815290519081900360140190206116fd816111ed612b8f565b6005906117635760405162461bcd60e51b81526020600482019081528254600260001961010060018416150201909116046024830181905290918291604490910190849080156112835780601f1061125857610100808354040283529160200191611283565b50506000918252600a602052604090912055565b606081518351146117b95760405162461bcd60e51b8152600401808060200182810382526029815260200180613fd56029913960400191505060405180910390fd5b6060835167ffffffffffffffff811180156117d357600080fd5b506040519080825280602002602001820160405280156117fd578160200160208202803683370190505b50905060005b84518110156118ed5760006001600160a01b031685828151811061182357fe5b60200260200101516001600160a01b031614156118715760405162461bcd60e51b8152600401808060200182810382526031815260200180613de26031913960400191505060405180910390fd5b6001600085838151811061188157fe5b6020026020010151815260200190815260200160002060008683815181106118a557fe5b60200260200101516001600160a01b03166001600160a01b03168152602001908152602001600020548282815181106118da57fe5b6020908102919091010152600101611803565b509392505050565b604080516000805160206140478339815191528152905190819003601401902081565b6000611926816111ed612b8f565b60059061198c5760405162461bcd60e51b81526020600482019081528254600260001961010060018416150201909116046024830181905290918291604490910190849080156112835780601f1061125857610100808354040283529160200191611283565b50604080516000805160206140478339815191528152905190819003601401902061129c9083612464565b604080516a4d494e5445525f524f4c4560a81b8152905190819003600b0190206119e3816111ed612b8f565b600590611a495760405162461bcd60e51b81526020600482019081528254600260001961010060018416150201909116046024830181905290918291604490910190849080156112835780601f1061125857610100808354040283529160200191611283565b50600084815260096020526040812054859190611a6c908663ffffffff612c3d16565b6000838152600a6020526040902054909150811115611ac7576040805162461bcd60e51b815260206004820152601260248201527113585e081cdd5c1c1b1e481c995858da195960721b604482015290519081900360640190fd5b611ad387878787613044565b600086815260096020526040902054611af2908663ffffffff612c3d16565b60009687526009602052604090962095909555505050505050565b6000611b1b816111ed612b8f565b600590611b815760405162461bcd60e51b81526020600482019081528254600260001961010060018416150201909116046024830181905290918291604490910190849080156112835780601f1061125857610100808354040283529160200191611283565b50604080516000805160206140478339815191528152905190819003601401902061129c908361314b565b6040805160008051602061404783398151915281529051908190036014019020611bd8816111ed612b8f565b600590611c3e5760405162461bcd60e51b81526020600482019081528254600260001961010060018416150201909116046024830181905290918291604490910190849080156112835780601f1061125857610100808354040283529160200191611283565b5061129c826111c1565b6000908152600a602052604090205490565b6000611c668180611c6c565b90505b90565b6000828152600460205260408120611c8a908363ffffffff6131ae16565b9392505050565b6000828152600460205260408120611c8a908363ffffffff6131ba16565b6040805160008051602061404783398151915281529051908190036014019020611cdb816111ed612b8f565b600590611d415760405162461bcd60e51b81526020600482019081528254600260001961010060018416150201909116046024830181905290918291604490910190849080156112835780601f1061125857610100808354040283529160200191611283565b506000805b84811015611d9357611d566131cf565b9150611d606131e6565b600082815260086020908152604080832080546001600160a01b03191633179055600a9091529020849055600101611d46565b5050505050565b6040805160008051602061404783398151915281529051908190036014019020611dc6816111ed612b8f565b600590611e2c5760405162461bcd60e51b81526020600482019081528254600260001961010060018416150201909116046024830181905290918291604490910190849080156112835780601f1061125857610100808354040283529160200191611283565b508151611e4090600d906020850190613c71565b505050565b6040805160008051602061404783398151915281529051908190036014019020611e71816111ed612b8f565b600590611ed75760405162461bcd60e51b81526020600482019081528254600260001961010060018416150201909116046024830181905290918291604490910190849080156112835780601f1061125857610100808354040283529160200191611283565b5050600090815260096020908152604080832054600a90925290912055565b600c805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156111595780601f1061112e57610100808354040283529160200191611159565b6000611f5f816111ed612b8f565b600590611fc55760405162461bcd60e51b81526020600482019081528254600260001961010060018416150201909116046024830181905290918291604490910190849080156112835780601f1061125857610100808354040283529160200191611283565b50604080516a4d494e5445525f524f4c4560a81b8152905190819003600b01902061129c908361314b565b600081565b816001600160a01b0316612007612b8f565b6001600160a01b0316141561204d5760405162461bcd60e51b8152600401808060200182810382526029815260200180613fac6029913960400191505060405180910390fd5b806002600061205a612b8f565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff19169215159290921790915561209e612b8f565b60408051841515815290516001600160a01b0392909216917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c319181900360200190a35050565b604080516a4d494e5445525f524f4c4560a81b8152905190819003600b0190206000906110aa9083611c91565b6040805160008051602061404783398151915281529051908190036014019020600090612140816111ed612b8f565b6005906121a65760405162461bcd60e51b81526020600482019081528254600260001961010060018416150201909116046024830181905290918291604490910190849080156112835780601f1061125857610100808354040283529160200191611283565b50878711156121e65760405162461bcd60e51b815260040180806020018281038252602d815260200180613f7f602d913960400191505060405180910390fd5b60006121f06131cf565b90506121fa6131e6565b600081815260086020526040902080546001600160a01b03191633179055851561228057807f6bb7ff708619ba0610cba295a58592e0451dee2622938c8755667688daf3529b888860405180806020018281038252848482818152602001925080828437600083820152604051601f909101601f19169092018290039550909350505050a25b87156122c8576122c833828a88888080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525061304492505050565b60008181526009602090815260408083208b9055600a90915290208990559150509695505050505050565b60408051600080516020614047833981519152815290519081900360140190206000906110aa9083611c91565b60009081526009602052604090205490565b604080516a4d494e5445525f524f4c4560a81b8152905190819003600b01902061235e816111ed612b8f565b6005906123c45760405162461bcd60e51b81526020600482019081528254600260001961010060018416150201909116046024830181905290918291604490910190849080156112835780601f1061125857610100808354040283529160200191611283565b5060005b82811015611d93576124078484838181106123df57fe5b905060200201356001600160a01b031686600160405180602001604052806000815250613044565b6001016123c8565b60008181526004602052604081206110aa906131f1565b6008602052600090815260409020546001600160a01b031681565b604080516a4d494e5445525f524f4c4560a81b8152905190819003600b01902081565b600082815260046020526040902060020154612482906111ed612b8f565b6116c75760405162461bcd60e51b8152600401808060200182810382526030815260200180613e866030913960400191505060405180910390fd5b604080516a4d494e5445525f524f4c4560a81b8152905190819003600b0190206124e9816111ed612b8f565b60059061254f5760405162461bcd60e51b81526020600482019081528254600260001961010060018416150201909116046024830181905290918291604490910190849080156112835780601f1061125857610100808354040283529160200191611283565b506115bd8686868080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050604080516020808a028281018201909352898252909350899250889182918501908490808284376000920182905250604080516020810190915290815292506131fc915050565b600d8054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156126585780601f1061262d57610100808354040283529160200191612658565b820191906000526020600020905b81548152906001019060200180831161263b57829003601f168201915b5050505050905090565b6006546040805163c455279160e01b81526001600160a01b0385811660048301529151600093831692851691839163c455279191602480820192602092909190829003018186803b1580156126b657600080fd5b505afa1580156126ca573d6000803e3d6000fd5b505050506040513d60208110156126e057600080fd5b50516001600160a01b031614156126fb5760019150506110aa565b612705848461344a565b949350505050565b6001600160a01b0384166127525760405162461bcd60e51b8152600401808060200182810382526025815260200180613eb66025913960400191505060405180910390fd5b61275a612b8f565b6001600160a01b0316856001600160a01b0316148061278057506127808561137a612b8f565b6127bb5760405162461bcd60e51b8152600401808060200182810382526029815260200180613e5d6029913960400191505060405180910390fd5b60006127c5612b8f565b90506127e58187876127d688613478565b6127df88613478565b876115bd565b612832836040518060600160405280602a8152602001613f30602a913960008781526001602090815260408083206001600160a01b038d168452909152902054919063ffffffff612ba616565b60008581526001602090815260408083206001600160a01b038b811685529252808320939093558716815220546128699084612c3d565b60008581526001602090815260408083206001600160a01b03808b168086529184529382902094909455805188815291820187905280518a8416938616927fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f6292908290030190a46115bd8187878787876134bc565b60006128ec816111ed612b8f565b6005906129525760405162461bcd60e51b81526020600482019081528254600260001961010060018416150201909116046024830181905290918291604490910190849080156112835780601f1061125857610100808354040283529160200191611283565b5061129c8261364f565b604080516a4d494e5445525f524f4c4560a81b8152905190819003600b019020612988816111ed612b8f565b6005906129ee5760405162461bcd60e51b81526020600482019081528254600260001961010060018416150201909116046024830181905290918291604490910190849080156112835780601f1061125857610100808354040283529160200191611283565b50816129fa858561103e565b1015612a4d576040805162461bcd60e51b815260206004820181905260248201527f43616e6e6f74206275726e206d6f7265207468616e2061646472657320686173604482015290519081900360640190fd5b612a588484846136b6565b50505050565b6000908152600860205260409020546001600160a01b0316151590565b606081612aa057506040805180820190915260018152600360fc1b60208201526110ce565b8160005b8115612ab857600101600a82049150612aa4565b60608167ffffffffffffffff81118015612ad157600080fd5b506040519080825280601f01601f191660200182016040528015612afc576020820181803683370190505b50905060001982015b8515612b4a57600a860660300160f81b82828060019003935081518110612b2857fe5b60200101906001600160f81b031916908160001a905350600a86049550612b05565b50949350505050565b6060611c8a83836040518060200160405280600081525060405180602001604052806000815250604051806020016040528060008152506137ef565b3390565b805161129c906003906020840190613c71565b60008184841115612c355760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015612bfa578181015183820152602001612be2565b50505050905090810190601f168015612c275780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b600082820183811015611c8a576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b612ca9846001600160a01b0316613a14565b156115bd57836001600160a01b031663bc197c8187878686866040518663ffffffff1660e01b815260040180866001600160a01b03166001600160a01b03168152602001856001600160a01b03166001600160a01b03168152602001806020018060200180602001848103845287818151815260200191508051906020019060200280838360005b83811015612d49578181015183820152602001612d31565b50505050905001848103835286818151815260200191508051906020019060200280838360005b83811015612d88578181015183820152602001612d70565b50505050905001848103825285818151815260200191508051906020019080838360005b83811015612dc4578181015183820152602001612dac565b50505050905090810190601f168015612df15780820380516001836020036101000a031916815260200191505b5098505050505050505050602060405180830381600087803b158015612e1657600080fd5b505af1925050508015612e3b57506040513d6020811015612e3657600080fd5b505160015b612f7d576040516000815260443d1015612e5757506000612ef4565b60046000803e60005160e01c6308c379a08114612e78576000915050612ef4565b60043d036004833e81513d602482011167ffffffffffffffff82111715612ea457600092505050612ef4565b808301805167ffffffffffffffff811115612ec6576000945050505050612ef4565b8060208301013d8601811115612ee457600095505050505050612ef4565b601f01601f191660405250925050505b80612eff5750612f46565b60405162461bcd60e51b8152602060048201818152835160248401528351849391928392604401919085019080838360008315612bfa578181015183820152602001612be2565b60405162461bcd60e51b8152600401808060200182810382526034815260200180613d0a6034913960400191505060405180910390fd5b6001600160e01b0319811663bc197c8160e01b14612fcc5760405162461bcd60e51b8152600401808060200182810382526028815260200180613d606028913960400191505060405180910390fd5b50505050505050565b6000828152600460205260409020612ff3908263ffffffff613a4d16565b1561129c57613000612b8f565b6001600160a01b0316816001600160a01b0316837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45050565b6001600160a01b0384166130895760405162461bcd60e51b81526004018080602001828103825260218152602001806140266021913960400191505060405180910390fd5b6000613093612b8f565b90506130a5816000876127d688613478565b60008481526001602090815260408083206001600160a01b03891684529091529020546130d8908463ffffffff612c3d16565b60008581526001602090815260408083206001600160a01b03808b16808652918452828520959095558151898152928301889052815190948616927fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f6292908290030190a4611d93816000878787876134bc565b600082815260046020526040902060020154613169906111ed612b8f565b6131a45760405162461bcd60e51b815260040180806020018281038252602f815260200180613d88602f913960400191505060405180910390fd5b61129c8282613a62565b6000611c8a8383613ad1565b6000611c8a836001600160a01b038416613b35565b600754600090611c6690600163ffffffff612c3d16565b600780546001019055565b60006110aa82613b4d565b6001600160a01b0384166132415760405162461bcd60e51b81526004018080602001828103825260218152602001806140266021913960400191505060405180910390fd5b81518351146132815760405162461bcd60e51b8152600401808060200182810382526028815260200180613ffe6028913960400191505060405180910390fd5b600061328b612b8f565b905061329c816000878787876115bd565b60005b845181101561336057613317600160008784815181106132bb57fe5b602002602001015181526020019081526020016000206000886001600160a01b03166001600160a01b031681526020019081526020016000205485838151811061330157fe5b6020026020010151612c3d90919063ffffffff16565b6001600087848151811061332757fe5b602090810291909101810151825281810192909252604090810160009081206001600160a01b038b16825290925290205560010161329f565b50846001600160a01b031660006001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051808060200180602001838103835285818151815260200191508051906020019060200280838360005b838110156133e75781810151838201526020016133cf565b50505050905001838103825284818151815260200191508051906020019060200280838360005b8381101561342657818101518382015260200161340e565b5050505090500194505050505060405180910390a4611d9381600087878787612c97565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205460ff1690565b6040805160018082528183019092526060918291906020808301908036833701905050905082816000815181106134ab57fe5b602090810291909101015292915050565b6134ce846001600160a01b0316613a14565b156115bd57836001600160a01b031663f23a6e6187878686866040518663ffffffff1660e01b815260040180866001600160a01b03166001600160a01b03168152602001856001600160a01b03166001600160a01b0316815260200184815260200183815260200180602001828103825283818151815260200191508051906020019080838360005b8381101561356f578181015183820152602001613557565b50505050905090810190601f16801561359c5780820380516001836020036101000a031916815260200191505b509650505050505050602060405180830381600087803b1580156135bf57600080fd5b505af19250505080156135e457506040513d60208110156135df57600080fd5b505160015b613600576040516000815260443d1015612e5757506000612ef4565b6001600160e01b0319811663f23a6e6160e01b14612fcc5760405162461bcd60e51b8152600401808060200182810382526028815260200180613d606028913960400191505060405180910390fd5b6001600160a01b0381166136945760405162461bcd60e51b8152600401808060200182810382526026815260200180613e136026913960400191505060405180910390fd5b61369f60008261314b565b6136b360006136ae8180611c6c565b612464565b50565b6001600160a01b0383166136fb5760405162461bcd60e51b8152600401808060200182810382526023815260200180613f0d6023913960400191505060405180910390fd5b6000613705612b8f565b90506137358185600061371787613478565b61372087613478565b604051806020016040528060008152506115bd565b61378282604051806060016040528060248152602001613e396024913960008681526001602090815260408083206001600160a01b038b168452909152902054919063ffffffff612ba616565b60008481526001602090815260408083206001600160a01b03808a16808652918452828520959095558151888152928301879052815193949093908616927fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f6292908290030190a450505050565b805182518451865188516060948a948a948a948a948a948a94919092019092019091010167ffffffffffffffff8111801561382957600080fd5b506040519080825280601f01601f191660200182016040528015613854576020820181803683370190505b509050806000805b88518110156138ad5788818151811061387157fe5b602001015160f81c60f81b83838060010194508151811061388e57fe5b60200101906001600160f81b031916908160001a90535060010161385c565b5060005b8751811015613902578781815181106138c657fe5b602001015160f81c60f81b8383806001019450815181106138e357fe5b60200101906001600160f81b031916908160001a9053506001016138b1565b5060005b86518110156139575786818151811061391b57fe5b602001015160f81c60f81b83838060010194508151811061393857fe5b60200101906001600160f81b031916908160001a905350600101613906565b5060005b85518110156139ac5785818151811061397057fe5b602001015160f81c60f81b83838060010194508151811061398d57fe5b60200101906001600160f81b031916908160001a90535060010161395b565b5060005b8451811015613a01578481815181106139c557fe5b602001015160f81c60f81b8383806001019450815181106139e257fe5b60200101906001600160f81b031916908160001a9053506001016139b0565b50909d9c50505050505050505050505050565b6000813f7fc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470818114801590612705575050151592915050565b6000611c8a836001600160a01b038416613b51565b6000828152600460205260409020613a80908263ffffffff613c1716565b1561129c57613a8d612b8f565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b81546000908210613b135760405162461bcd60e51b8152600401808060200182810382526022815260200180613d3e6022913960400191505060405180910390fd5b826000018281548110613b2257fe5b9060005260206000200154905092915050565b60009081526001919091016020526040902054151590565b5490565b60008181526001830160205260408120548015613c0d5783546000198083019190810190600090879083908110613b8457fe5b9060005260206000200154905080876000018481548110613ba157fe5b600091825260208083209091019290925582815260018981019092526040902090840190558654879080613bd157fe5b600190038181906000526020600020016000905590558660010160008781526020019081526020016000206000905560019450505050506110aa565b60009150506110aa565b6000611c8a836001600160a01b0384166000613c338383613b35565b613c69575081546001818101845560008481526020808220909301849055845484825282860190935260409020919091556110aa565b5060006110aa565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10613cb257805160ff1916838001178555613cdf565b82800160010185558215613cdf579182015b82811115613cdf578251825591602001919060010190613cc4565b50613ceb929150613cef565b5090565b611c6991905b80821115613ceb5760008155600101613cf556fe455243313135353a207472616e7366657220746f206e6f6e2045524331313535526563656976657220696d706c656d656e746572456e756d657261626c655365743a20696e646578206f7574206f6620626f756e6473455243313135353a204552433131353552656365697665722072656a656374656420746f6b656e73416363657373436f6e74726f6c3a2073656e646572206d75737420626520616e2061646d696e20746f206772616e74455243313135353a2062616c616e636520717565727920666f7220746865207a65726f2061646472657373455243313135353a2062617463682062616c616e636520717565727920666f7220746865207a65726f20616464726573734f776e61626c653a206e6577206f776e657220697320746865207a65726f2061646472657373455243313135353a206275726e20616d6f756e7420657863656564732062616c616e6365455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f766564416363657373436f6e74726f6c3a2073656e646572206d75737420626520616e2061646d696e20746f207265766f6b65455243313135353a207472616e7366657220746f20746865207a65726f2061646472657373455243313135353a207472616e736665722063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f766564455243313135353a206275726e2066726f6d20746865207a65726f2061646472657373455243313135353a20696e73756666696369656e742062616c616e636520666f72207472616e736665724552433732315472616461626c65237572693a204e4f4e4558495354454e545f544f4b454e496e697469616c20737570706c792063616e6e6f74206265206d6f7265207468616e206d617820737570706c79455243313135353a2073657474696e6720617070726f76616c2073746174757320666f722073656c66455243313135353a206163636f756e747320616e6420696473206c656e677468206d69736d61746368455243313135353a2069647320616e6420616d6f756e7473206c656e677468206d69736d61746368455243313135353a206d696e7420746f20746865207a65726f206164647265737357484954454c4953545f41444d494e5f524f4c45000000000000000000000000416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636520726f6c657320666f722073656c66a26469706673582212209b935597c4e356141e207b0abb2d035cf5a2548ed1ee17ade6d5e5fce2d1ff7364736f6c6343000606003368747470733a2f2f6170692e746f7368696d6f6e2e696f2f746f7368696d6f6e2d65726331313535000000000000000000000000a5409ec958c83c3f309868babaca7c86dcb077c1
Deployed Bytecode
0x608060405234801561001057600080fd5b506004361061027d5760003560e01c806391d148541161015c578063bd85b039116100ce578063d81d0a1511610087578063d81d0a1514610e07578063e8a3d48514610ed5578063e985e9c514610edd578063f242432a14610f0b578063f2fde38b14610fd4578063f5298aca14610ffa5761027d565b8063bd85b03914610d07578063bdf7a8e614610d24578063ca15c87314610d99578063cd53d08e14610db6578063d539139314610dd3578063d547741f14610ddb5761027d565b8063983b2d5611610120578063983b2d5614610b95578063a217fddf14610bbb578063a22cb46514610bc3578063aa271e1a14610bf1578063b09ddf7b14610c17578063bb5f747b14610ce15761027d565b806391d1485414610a7d57806392a2d84614610aa9578063938e3d7b14610acc57806394dd286914610b7057806395d89b4114610b8d5761027d565b806336568abe116101f5578063731133e9116101b9578063731133e91461088f5780637362d9c81461094f5780637e518ec814610975578063869f759414610a195780638da5cb5b14610a365780639010d07c14610a5a5761027d565b806336568abe1461069f57806337da577c146106cb5780634e1273f4146106ee57806354202c4e146108615780636897e974146108695761027d565b8063122f94bf11610247578063122f94bf146103b2578063248a9ca3146104585780632693ebf2146104755780632eb2c2d6146104925780632f54bf6e146106535780633092afd5146106795761027d565b80624221f014610282578062fdd58e146102b157806301ffc9a7146102dd57806306fdde03146103185780630e89341c14610395575b600080fd5b61029f6004803603602081101561029857600080fd5b503561102c565b60408051918252519081900360200190f35b61029f600480360360408110156102c757600080fd5b506001600160a01b03813516906020013561103e565b610304600480360360208110156102f357600080fd5b50356001600160e01b0319166110b0565b604080519115158252519081900360200190f35b6103206110d3565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561035a578181015183820152602001610342565b50505050905090810190601f1680156103875780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b610320600480360360208110156103ab57600080fd5b5035611161565b610456600480360360208110156103c857600080fd5b810190602081018135600160201b8111156103e257600080fd5b8201836020820111156103f457600080fd5b803590602001918460018302840111600160201b8311171561041557600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295506111c1945050505050565b005b61029f6004803603602081101561046e57600080fd5b50356112a0565b61029f6004803603602081101561048b57600080fd5b50356112b5565b610456600480360360a08110156104a857600080fd5b6001600160a01b038235811692602081013590911691810190606081016040820135600160201b8111156104db57600080fd5b8201836020820111156104ed57600080fd5b803590602001918460208302840111600160201b8311171561050e57600080fd5b9190808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152509295949360208101935035915050600160201b81111561055d57600080fd5b82018360208201111561056f57600080fd5b803590602001918460208302840111600160201b8311171561059057600080fd5b9190808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152509295949360208101935035915050600160201b8111156105df57600080fd5b8201836020820111156105f157600080fd5b803590602001918460018302840111600160201b8311171561061257600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295506112c7945050505050565b6103046004803603602081101561066957600080fd5b50356001600160a01b03166115c5565b6104566004803603602081101561068f57600080fd5b50356001600160a01b03166115d1565b610456600480360360408110156106b557600080fd5b50803590602001356001600160a01b0316611670565b610456600480360360408110156106e157600080fd5b50803590602001356116d1565b6108116004803603604081101561070457600080fd5b810190602081018135600160201b81111561071e57600080fd5b82018360208201111561073057600080fd5b803590602001918460208302840111600160201b8311171561075157600080fd5b9190808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152509295949360208101935035915050600160201b8111156107a057600080fd5b8201836020820111156107b257600080fd5b803590602001918460208302840111600160201b831117156107d357600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250929550611777945050505050565b60408051602080825283518183015283519192839290830191858101910280838360005b8381101561084d578181015183820152602001610835565b505050509050019250505060405180910390f35b61029f6118f5565b6104566004803603602081101561087f57600080fd5b50356001600160a01b0316611918565b610456600480360360808110156108a557600080fd5b6001600160a01b038235169160208101359160408201359190810190608081016060820135600160201b8111156108db57600080fd5b8201836020820111156108ed57600080fd5b803590602001918460018302840111600160201b8311171561090e57600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295506119b7945050505050565b6104566004803603602081101561096557600080fd5b50356001600160a01b0316611b0d565b6104566004803603602081101561098b57600080fd5b810190602081018135600160201b8111156109a557600080fd5b8201836020820111156109b757600080fd5b803590602001918460018302840111600160201b831117156109d857600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550611bac945050505050565b61029f60048036036020811015610a2f57600080fd5b5035611c48565b610a3e611c5a565b604080516001600160a01b039092168252519081900360200190f35b610a3e60048036036040811015610a7057600080fd5b5080359060200135611c6c565b61030460048036036040811015610a9357600080fd5b50803590602001356001600160a01b0316611c91565b61045660048036036040811015610abf57600080fd5b5080359060200135611caf565b61045660048036036020811015610ae257600080fd5b810190602081018135600160201b811115610afc57600080fd5b820183602082011115610b0e57600080fd5b803590602001918460018302840111600160201b83111715610b2f57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550611d9a945050505050565b61045660048036036020811015610b8657600080fd5b5035611e45565b610320611ef6565b61045660048036036020811015610bab57600080fd5b50356001600160a01b0316611f51565b61029f611ff0565b61045660048036036040811015610bd957600080fd5b506001600160a01b0381351690602001351515611ff5565b61030460048036036020811015610c0757600080fd5b50356001600160a01b03166120e4565b61029f60048036036080811015610c2d57600080fd5b813591602081013591810190606081016040820135600160201b811115610c5357600080fd5b820183602082011115610c6557600080fd5b803590602001918460018302840111600160201b83111715610c8657600080fd5b919390929091602081019035600160201b811115610ca357600080fd5b820183602082011115610cb557600080fd5b803590602001918460018302840111600160201b83111715610cd657600080fd5b509092509050612111565b61030460048036036020811015610cf757600080fd5b50356001600160a01b03166122f3565b61029f60048036036020811015610d1d57600080fd5b5035612320565b61045660048036036040811015610d3a57600080fd5b81359190810190604081016020820135600160201b811115610d5b57600080fd5b820183602082011115610d6d57600080fd5b803590602001918460208302840111600160201b83111715610d8e57600080fd5b509092509050612332565b61029f60048036036020811015610daf57600080fd5b503561240f565b610a3e60048036036020811015610dcc57600080fd5b5035612426565b61029f612441565b61045660048036036040811015610df157600080fd5b50803590602001356001600160a01b0316612464565b61045660048036036060811015610e1d57600080fd5b6001600160a01b038235169190810190604081016020820135600160201b811115610e4757600080fd5b820183602082011115610e5957600080fd5b803590602001918460208302840111600160201b83111715610e7a57600080fd5b919390929091602081019035600160201b811115610e9757600080fd5b820183602082011115610ea957600080fd5b803590602001918460208302840111600160201b83111715610eca57600080fd5b5090925090506124bd565b6103206125cc565b61030460048036036040811015610ef357600080fd5b506001600160a01b0381358116916020013516612662565b610456600480360360a0811015610f2157600080fd5b6001600160a01b03823581169260208101359091169160408201359160608101359181019060a081016080820135600160201b811115610f6057600080fd5b820183602082011115610f7257600080fd5b803590602001918460018302840111600160201b83111715610f9357600080fd5b91908080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525092955061270d945050505050565b61045660048036036020811015610fea57600080fd5b50356001600160a01b03166128de565b6104566004803603606081101561101057600080fd5b506001600160a01b03813516906020810135906040013561295c565b600a6020526000908152604090205481565b60006001600160a01b0383166110855760405162461bcd60e51b815260040180806020018281038252602b815260200180613db7602b913960400191505060405180910390fd5b5060008181526001602090815260408083206001600160a01b03861684529091529020545b92915050565b6001600160e01b0319811660009081526020819052604090205460ff165b919050565b600b805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156111595780601f1061112e57610100808354040283529160200191611159565b820191906000526020600020905b81548152906001019060200180831161113c57829003601f168201915b505050505081565b606061116c82612a5e565b6111a75760405162461bcd60e51b8152600401808060200182810382526025815260200180613f5a6025913960400191505060405180910390fd5b6110aa6111b383611161565b6111bc84612a7b565b612b53565b60408051600080516020614047833981519152815290519081900360140190206111f2816111ed612b8f565b611c91565b6005906112925760405162461bcd60e51b81526020600482019081528254600260001961010060018416150201909116046024830181905290918291604490910190849080156112835780601f1061125857610100808354040283529160200191611283565b820191906000526020600020905b81548152906001019060200180831161126657829003601f168201915b50509250505060405180910390fd5b5061129c82612b93565b5050565b60009081526004602052604090206002015490565b60096020526000908152604090205481565b81518351146113075760405162461bcd60e51b8152600401808060200182810382526028815260200180613ffe6028913960400191505060405180910390fd5b6001600160a01b03841661134c5760405162461bcd60e51b8152600401808060200182810382526025815260200180613eb66025913960400191505060405180910390fd5b611354612b8f565b6001600160a01b0316856001600160a01b0316148061137f575061137f8561137a612b8f565b612662565b6113ba5760405162461bcd60e51b8152600401808060200182810382526032815260200180613edb6032913960400191505060405180910390fd5b60006113c4612b8f565b90506113d48187878787876115bd565b60005b84518110156114d55760008582815181106113ee57fe5b60200260200101519050600085838151811061140657fe5b60200260200101519050611473816040518060600160405280602a8152602001613f30602a91396001600086815260200190815260200160002060008d6001600160a01b03166001600160a01b0316815260200190815260200160002054612ba69092919063ffffffff16565b60008381526001602090815260408083206001600160a01b038e811685529252808320939093558a16815220546114aa9082612c3d565b60009283526001602081815260408086206001600160a01b038d1687529091529093205550016113d7565b50846001600160a01b0316866001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051808060200180602001838103835285818151815260200191508051906020019060200280838360005b8381101561155b578181015183820152602001611543565b50505050905001838103825284818151815260200191508051906020019060200280838360005b8381101561159a578181015183820152602001611582565b5050505090500194505050505060405180910390a46115bd818787878787612c97565b505050505050565b60006110aa8183611c91565b60006115df816111ed612b8f565b6005906116455760405162461bcd60e51b81526020600482019081528254600260001961010060018416150201909116046024830181905290918291604490910190849080156112835780601f1061125857610100808354040283529160200191611283565b50604080516a4d494e5445525f524f4c4560a81b8152905190819003600b01902061129c9083612464565b611678612b8f565b6001600160a01b0316816001600160a01b0316146116c75760405162461bcd60e51b815260040180806020018281038252602f815260200180614067602f913960400191505060405180910390fd5b61129c8282612fd5565b60408051600080516020614047833981519152815290519081900360140190206116fd816111ed612b8f565b6005906117635760405162461bcd60e51b81526020600482019081528254600260001961010060018416150201909116046024830181905290918291604490910190849080156112835780601f1061125857610100808354040283529160200191611283565b50506000918252600a602052604090912055565b606081518351146117b95760405162461bcd60e51b8152600401808060200182810382526029815260200180613fd56029913960400191505060405180910390fd5b6060835167ffffffffffffffff811180156117d357600080fd5b506040519080825280602002602001820160405280156117fd578160200160208202803683370190505b50905060005b84518110156118ed5760006001600160a01b031685828151811061182357fe5b60200260200101516001600160a01b031614156118715760405162461bcd60e51b8152600401808060200182810382526031815260200180613de26031913960400191505060405180910390fd5b6001600085838151811061188157fe5b6020026020010151815260200190815260200160002060008683815181106118a557fe5b60200260200101516001600160a01b03166001600160a01b03168152602001908152602001600020548282815181106118da57fe5b6020908102919091010152600101611803565b509392505050565b604080516000805160206140478339815191528152905190819003601401902081565b6000611926816111ed612b8f565b60059061198c5760405162461bcd60e51b81526020600482019081528254600260001961010060018416150201909116046024830181905290918291604490910190849080156112835780601f1061125857610100808354040283529160200191611283565b50604080516000805160206140478339815191528152905190819003601401902061129c9083612464565b604080516a4d494e5445525f524f4c4560a81b8152905190819003600b0190206119e3816111ed612b8f565b600590611a495760405162461bcd60e51b81526020600482019081528254600260001961010060018416150201909116046024830181905290918291604490910190849080156112835780601f1061125857610100808354040283529160200191611283565b50600084815260096020526040812054859190611a6c908663ffffffff612c3d16565b6000838152600a6020526040902054909150811115611ac7576040805162461bcd60e51b815260206004820152601260248201527113585e081cdd5c1c1b1e481c995858da195960721b604482015290519081900360640190fd5b611ad387878787613044565b600086815260096020526040902054611af2908663ffffffff612c3d16565b60009687526009602052604090962095909555505050505050565b6000611b1b816111ed612b8f565b600590611b815760405162461bcd60e51b81526020600482019081528254600260001961010060018416150201909116046024830181905290918291604490910190849080156112835780601f1061125857610100808354040283529160200191611283565b50604080516000805160206140478339815191528152905190819003601401902061129c908361314b565b6040805160008051602061404783398151915281529051908190036014019020611bd8816111ed612b8f565b600590611c3e5760405162461bcd60e51b81526020600482019081528254600260001961010060018416150201909116046024830181905290918291604490910190849080156112835780601f1061125857610100808354040283529160200191611283565b5061129c826111c1565b6000908152600a602052604090205490565b6000611c668180611c6c565b90505b90565b6000828152600460205260408120611c8a908363ffffffff6131ae16565b9392505050565b6000828152600460205260408120611c8a908363ffffffff6131ba16565b6040805160008051602061404783398151915281529051908190036014019020611cdb816111ed612b8f565b600590611d415760405162461bcd60e51b81526020600482019081528254600260001961010060018416150201909116046024830181905290918291604490910190849080156112835780601f1061125857610100808354040283529160200191611283565b506000805b84811015611d9357611d566131cf565b9150611d606131e6565b600082815260086020908152604080832080546001600160a01b03191633179055600a9091529020849055600101611d46565b5050505050565b6040805160008051602061404783398151915281529051908190036014019020611dc6816111ed612b8f565b600590611e2c5760405162461bcd60e51b81526020600482019081528254600260001961010060018416150201909116046024830181905290918291604490910190849080156112835780601f1061125857610100808354040283529160200191611283565b508151611e4090600d906020850190613c71565b505050565b6040805160008051602061404783398151915281529051908190036014019020611e71816111ed612b8f565b600590611ed75760405162461bcd60e51b81526020600482019081528254600260001961010060018416150201909116046024830181905290918291604490910190849080156112835780601f1061125857610100808354040283529160200191611283565b5050600090815260096020908152604080832054600a90925290912055565b600c805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156111595780601f1061112e57610100808354040283529160200191611159565b6000611f5f816111ed612b8f565b600590611fc55760405162461bcd60e51b81526020600482019081528254600260001961010060018416150201909116046024830181905290918291604490910190849080156112835780601f1061125857610100808354040283529160200191611283565b50604080516a4d494e5445525f524f4c4560a81b8152905190819003600b01902061129c908361314b565b600081565b816001600160a01b0316612007612b8f565b6001600160a01b0316141561204d5760405162461bcd60e51b8152600401808060200182810382526029815260200180613fac6029913960400191505060405180910390fd5b806002600061205a612b8f565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff19169215159290921790915561209e612b8f565b60408051841515815290516001600160a01b0392909216917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c319181900360200190a35050565b604080516a4d494e5445525f524f4c4560a81b8152905190819003600b0190206000906110aa9083611c91565b6040805160008051602061404783398151915281529051908190036014019020600090612140816111ed612b8f565b6005906121a65760405162461bcd60e51b81526020600482019081528254600260001961010060018416150201909116046024830181905290918291604490910190849080156112835780601f1061125857610100808354040283529160200191611283565b50878711156121e65760405162461bcd60e51b815260040180806020018281038252602d815260200180613f7f602d913960400191505060405180910390fd5b60006121f06131cf565b90506121fa6131e6565b600081815260086020526040902080546001600160a01b03191633179055851561228057807f6bb7ff708619ba0610cba295a58592e0451dee2622938c8755667688daf3529b888860405180806020018281038252848482818152602001925080828437600083820152604051601f909101601f19169092018290039550909350505050a25b87156122c8576122c833828a88888080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525061304492505050565b60008181526009602090815260408083208b9055600a90915290208990559150509695505050505050565b60408051600080516020614047833981519152815290519081900360140190206000906110aa9083611c91565b60009081526009602052604090205490565b604080516a4d494e5445525f524f4c4560a81b8152905190819003600b01902061235e816111ed612b8f565b6005906123c45760405162461bcd60e51b81526020600482019081528254600260001961010060018416150201909116046024830181905290918291604490910190849080156112835780601f1061125857610100808354040283529160200191611283565b5060005b82811015611d93576124078484838181106123df57fe5b905060200201356001600160a01b031686600160405180602001604052806000815250613044565b6001016123c8565b60008181526004602052604081206110aa906131f1565b6008602052600090815260409020546001600160a01b031681565b604080516a4d494e5445525f524f4c4560a81b8152905190819003600b01902081565b600082815260046020526040902060020154612482906111ed612b8f565b6116c75760405162461bcd60e51b8152600401808060200182810382526030815260200180613e866030913960400191505060405180910390fd5b604080516a4d494e5445525f524f4c4560a81b8152905190819003600b0190206124e9816111ed612b8f565b60059061254f5760405162461bcd60e51b81526020600482019081528254600260001961010060018416150201909116046024830181905290918291604490910190849080156112835780601f1061125857610100808354040283529160200191611283565b506115bd8686868080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050604080516020808a028281018201909352898252909350899250889182918501908490808284376000920182905250604080516020810190915290815292506131fc915050565b600d8054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156126585780601f1061262d57610100808354040283529160200191612658565b820191906000526020600020905b81548152906001019060200180831161263b57829003601f168201915b5050505050905090565b6006546040805163c455279160e01b81526001600160a01b0385811660048301529151600093831692851691839163c455279191602480820192602092909190829003018186803b1580156126b657600080fd5b505afa1580156126ca573d6000803e3d6000fd5b505050506040513d60208110156126e057600080fd5b50516001600160a01b031614156126fb5760019150506110aa565b612705848461344a565b949350505050565b6001600160a01b0384166127525760405162461bcd60e51b8152600401808060200182810382526025815260200180613eb66025913960400191505060405180910390fd5b61275a612b8f565b6001600160a01b0316856001600160a01b0316148061278057506127808561137a612b8f565b6127bb5760405162461bcd60e51b8152600401808060200182810382526029815260200180613e5d6029913960400191505060405180910390fd5b60006127c5612b8f565b90506127e58187876127d688613478565b6127df88613478565b876115bd565b612832836040518060600160405280602a8152602001613f30602a913960008781526001602090815260408083206001600160a01b038d168452909152902054919063ffffffff612ba616565b60008581526001602090815260408083206001600160a01b038b811685529252808320939093558716815220546128699084612c3d565b60008581526001602090815260408083206001600160a01b03808b168086529184529382902094909455805188815291820187905280518a8416938616927fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f6292908290030190a46115bd8187878787876134bc565b60006128ec816111ed612b8f565b6005906129525760405162461bcd60e51b81526020600482019081528254600260001961010060018416150201909116046024830181905290918291604490910190849080156112835780601f1061125857610100808354040283529160200191611283565b5061129c8261364f565b604080516a4d494e5445525f524f4c4560a81b8152905190819003600b019020612988816111ed612b8f565b6005906129ee5760405162461bcd60e51b81526020600482019081528254600260001961010060018416150201909116046024830181905290918291604490910190849080156112835780601f1061125857610100808354040283529160200191611283565b50816129fa858561103e565b1015612a4d576040805162461bcd60e51b815260206004820181905260248201527f43616e6e6f74206275726e206d6f7265207468616e2061646472657320686173604482015290519081900360640190fd5b612a588484846136b6565b50505050565b6000908152600860205260409020546001600160a01b0316151590565b606081612aa057506040805180820190915260018152600360fc1b60208201526110ce565b8160005b8115612ab857600101600a82049150612aa4565b60608167ffffffffffffffff81118015612ad157600080fd5b506040519080825280601f01601f191660200182016040528015612afc576020820181803683370190505b50905060001982015b8515612b4a57600a860660300160f81b82828060019003935081518110612b2857fe5b60200101906001600160f81b031916908160001a905350600a86049550612b05565b50949350505050565b6060611c8a83836040518060200160405280600081525060405180602001604052806000815250604051806020016040528060008152506137ef565b3390565b805161129c906003906020840190613c71565b60008184841115612c355760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015612bfa578181015183820152602001612be2565b50505050905090810190601f168015612c275780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b600082820183811015611c8a576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b612ca9846001600160a01b0316613a14565b156115bd57836001600160a01b031663bc197c8187878686866040518663ffffffff1660e01b815260040180866001600160a01b03166001600160a01b03168152602001856001600160a01b03166001600160a01b03168152602001806020018060200180602001848103845287818151815260200191508051906020019060200280838360005b83811015612d49578181015183820152602001612d31565b50505050905001848103835286818151815260200191508051906020019060200280838360005b83811015612d88578181015183820152602001612d70565b50505050905001848103825285818151815260200191508051906020019080838360005b83811015612dc4578181015183820152602001612dac565b50505050905090810190601f168015612df15780820380516001836020036101000a031916815260200191505b5098505050505050505050602060405180830381600087803b158015612e1657600080fd5b505af1925050508015612e3b57506040513d6020811015612e3657600080fd5b505160015b612f7d576040516000815260443d1015612e5757506000612ef4565b60046000803e60005160e01c6308c379a08114612e78576000915050612ef4565b60043d036004833e81513d602482011167ffffffffffffffff82111715612ea457600092505050612ef4565b808301805167ffffffffffffffff811115612ec6576000945050505050612ef4565b8060208301013d8601811115612ee457600095505050505050612ef4565b601f01601f191660405250925050505b80612eff5750612f46565b60405162461bcd60e51b8152602060048201818152835160248401528351849391928392604401919085019080838360008315612bfa578181015183820152602001612be2565b60405162461bcd60e51b8152600401808060200182810382526034815260200180613d0a6034913960400191505060405180910390fd5b6001600160e01b0319811663bc197c8160e01b14612fcc5760405162461bcd60e51b8152600401808060200182810382526028815260200180613d606028913960400191505060405180910390fd5b50505050505050565b6000828152600460205260409020612ff3908263ffffffff613a4d16565b1561129c57613000612b8f565b6001600160a01b0316816001600160a01b0316837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45050565b6001600160a01b0384166130895760405162461bcd60e51b81526004018080602001828103825260218152602001806140266021913960400191505060405180910390fd5b6000613093612b8f565b90506130a5816000876127d688613478565b60008481526001602090815260408083206001600160a01b03891684529091529020546130d8908463ffffffff612c3d16565b60008581526001602090815260408083206001600160a01b03808b16808652918452828520959095558151898152928301889052815190948616927fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f6292908290030190a4611d93816000878787876134bc565b600082815260046020526040902060020154613169906111ed612b8f565b6131a45760405162461bcd60e51b815260040180806020018281038252602f815260200180613d88602f913960400191505060405180910390fd5b61129c8282613a62565b6000611c8a8383613ad1565b6000611c8a836001600160a01b038416613b35565b600754600090611c6690600163ffffffff612c3d16565b600780546001019055565b60006110aa82613b4d565b6001600160a01b0384166132415760405162461bcd60e51b81526004018080602001828103825260218152602001806140266021913960400191505060405180910390fd5b81518351146132815760405162461bcd60e51b8152600401808060200182810382526028815260200180613ffe6028913960400191505060405180910390fd5b600061328b612b8f565b905061329c816000878787876115bd565b60005b845181101561336057613317600160008784815181106132bb57fe5b602002602001015181526020019081526020016000206000886001600160a01b03166001600160a01b031681526020019081526020016000205485838151811061330157fe5b6020026020010151612c3d90919063ffffffff16565b6001600087848151811061332757fe5b602090810291909101810151825281810192909252604090810160009081206001600160a01b038b16825290925290205560010161329f565b50846001600160a01b031660006001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051808060200180602001838103835285818151815260200191508051906020019060200280838360005b838110156133e75781810151838201526020016133cf565b50505050905001838103825284818151815260200191508051906020019060200280838360005b8381101561342657818101518382015260200161340e565b5050505090500194505050505060405180910390a4611d9381600087878787612c97565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205460ff1690565b6040805160018082528183019092526060918291906020808301908036833701905050905082816000815181106134ab57fe5b602090810291909101015292915050565b6134ce846001600160a01b0316613a14565b156115bd57836001600160a01b031663f23a6e6187878686866040518663ffffffff1660e01b815260040180866001600160a01b03166001600160a01b03168152602001856001600160a01b03166001600160a01b0316815260200184815260200183815260200180602001828103825283818151815260200191508051906020019080838360005b8381101561356f578181015183820152602001613557565b50505050905090810190601f16801561359c5780820380516001836020036101000a031916815260200191505b509650505050505050602060405180830381600087803b1580156135bf57600080fd5b505af19250505080156135e457506040513d60208110156135df57600080fd5b505160015b613600576040516000815260443d1015612e5757506000612ef4565b6001600160e01b0319811663f23a6e6160e01b14612fcc5760405162461bcd60e51b8152600401808060200182810382526028815260200180613d606028913960400191505060405180910390fd5b6001600160a01b0381166136945760405162461bcd60e51b8152600401808060200182810382526026815260200180613e136026913960400191505060405180910390fd5b61369f60008261314b565b6136b360006136ae8180611c6c565b612464565b50565b6001600160a01b0383166136fb5760405162461bcd60e51b8152600401808060200182810382526023815260200180613f0d6023913960400191505060405180910390fd5b6000613705612b8f565b90506137358185600061371787613478565b61372087613478565b604051806020016040528060008152506115bd565b61378282604051806060016040528060248152602001613e396024913960008681526001602090815260408083206001600160a01b038b168452909152902054919063ffffffff612ba616565b60008481526001602090815260408083206001600160a01b03808a16808652918452828520959095558151888152928301879052815193949093908616927fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f6292908290030190a450505050565b805182518451865188516060948a948a948a948a948a948a94919092019092019091010167ffffffffffffffff8111801561382957600080fd5b506040519080825280601f01601f191660200182016040528015613854576020820181803683370190505b509050806000805b88518110156138ad5788818151811061387157fe5b602001015160f81c60f81b83838060010194508151811061388e57fe5b60200101906001600160f81b031916908160001a90535060010161385c565b5060005b8751811015613902578781815181106138c657fe5b602001015160f81c60f81b8383806001019450815181106138e357fe5b60200101906001600160f81b031916908160001a9053506001016138b1565b5060005b86518110156139575786818151811061391b57fe5b602001015160f81c60f81b83838060010194508151811061393857fe5b60200101906001600160f81b031916908160001a905350600101613906565b5060005b85518110156139ac5785818151811061397057fe5b602001015160f81c60f81b83838060010194508151811061398d57fe5b60200101906001600160f81b031916908160001a90535060010161395b565b5060005b8451811015613a01578481815181106139c557fe5b602001015160f81c60f81b8383806001019450815181106139e257fe5b60200101906001600160f81b031916908160001a9053506001016139b0565b50909d9c50505050505050505050505050565b6000813f7fc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470818114801590612705575050151592915050565b6000611c8a836001600160a01b038416613b51565b6000828152600460205260409020613a80908263ffffffff613c1716565b1561129c57613a8d612b8f565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b81546000908210613b135760405162461bcd60e51b8152600401808060200182810382526022815260200180613d3e6022913960400191505060405180910390fd5b826000018281548110613b2257fe5b9060005260206000200154905092915050565b60009081526001919091016020526040902054151590565b5490565b60008181526001830160205260408120548015613c0d5783546000198083019190810190600090879083908110613b8457fe5b9060005260206000200154905080876000018481548110613ba157fe5b600091825260208083209091019290925582815260018981019092526040902090840190558654879080613bd157fe5b600190038181906000526020600020016000905590558660010160008781526020019081526020016000206000905560019450505050506110aa565b60009150506110aa565b6000611c8a836001600160a01b0384166000613c338383613b35565b613c69575081546001818101845560008481526020808220909301849055845484825282860190935260409020919091556110aa565b5060006110aa565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10613cb257805160ff1916838001178555613cdf565b82800160010185558215613cdf579182015b82811115613cdf578251825591602001919060010190613cc4565b50613ceb929150613cef565b5090565b611c6991905b80821115613ceb5760008155600101613cf556fe455243313135353a207472616e7366657220746f206e6f6e2045524331313535526563656976657220696d706c656d656e746572456e756d657261626c655365743a20696e646578206f7574206f6620626f756e6473455243313135353a204552433131353552656365697665722072656a656374656420746f6b656e73416363657373436f6e74726f6c3a2073656e646572206d75737420626520616e2061646d696e20746f206772616e74455243313135353a2062616c616e636520717565727920666f7220746865207a65726f2061646472657373455243313135353a2062617463682062616c616e636520717565727920666f7220746865207a65726f20616464726573734f776e61626c653a206e6577206f776e657220697320746865207a65726f2061646472657373455243313135353a206275726e20616d6f756e7420657863656564732062616c616e6365455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f766564416363657373436f6e74726f6c3a2073656e646572206d75737420626520616e2061646d696e20746f207265766f6b65455243313135353a207472616e7366657220746f20746865207a65726f2061646472657373455243313135353a207472616e736665722063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f766564455243313135353a206275726e2066726f6d20746865207a65726f2061646472657373455243313135353a20696e73756666696369656e742062616c616e636520666f72207472616e736665724552433732315472616461626c65237572693a204e4f4e4558495354454e545f544f4b454e496e697469616c20737570706c792063616e6e6f74206265206d6f7265207468616e206d617820737570706c79455243313135353a2073657474696e6720617070726f76616c2073746174757320666f722073656c66455243313135353a206163636f756e747320616e6420696473206c656e677468206d69736d61746368455243313135353a2069647320616e6420616d6f756e7473206c656e677468206d69736d61746368455243313135353a206d696e7420746f20746865207a65726f206164647265737357484954454c4953545f41444d494e5f524f4c45000000000000000000000000416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636520726f6c657320666f722073656c66a26469706673582212209b935597c4e356141e207b0abb2d035cf5a2548ed1ee17ade6d5e5fce2d1ff7364736f6c63430006060033
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
61153:3185:0:-:0;;;;5:9:-1;2:2;;;27:1;24;17:12;2:2;61153:3185:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12:1:-1;9;2:12;55842:49:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;55842:49:0;;:::i;:::-;;;;;;;;;;;;;;;;25447:223;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;25447:223:0;;;;;;;;:::i;10096:142::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;10096:142:0;-1:-1:-1;;;;;;10096:142:0;;:::i;:::-;;;;;;;;;;;;;;;;;;55916:18;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:100:-1;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;55916:18:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56791:219;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;56791:219:0;;:::i;57418:166::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;57418:166:0;;;;;;;;-1:-1:-1;;;11:28;;8:2;;;52:1;49;42:12;8:2;57418:166:0;;41:9:-1;34:4;18:14;14:25;11:40;8:2;;;64:1;61;54:12;8:2;57418:166:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;-1:-1;;;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;57418:166:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;57418:166:0;;-1:-1:-1;57418:166:0;;-1:-1:-1;;;;;57418:166:0:i;:::-;;49547:114;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;49547:114:0;;:::i;55791:46::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;55791:46:0;;:::i;28167:1220::-;;;;;;15:3:-1;10;7:12;4:2;;;32:1;29;22:12;4:2;-1:-1;;;;;28167:1220:0;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;11:28;;8:2;;;52:1;49;42:12;8:2;28167:1220:0;;41:9:-1;34:4;18:14;14:25;11:40;8:2;;;64:1;61;54:12;8:2;28167:1220:0;;;;;;101:9:-1;95:2;81:12;77:21;67:8;63:36;60:51;-1:-1;;;25:12;22:29;11:108;8:2;;;132:1;129;122:12;8:2;28167:1220:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;28167:1220:0;;;;;;;;-1:-1:-1;28167:1220:0;;-1:-1:-1;;;;;11:28;;8:2;;;52:1;49;42:12;8:2;28167:1220:0;;41:9:-1;34:4;18:14;14:25;11:40;8:2;;;64:1;61;54:12;8:2;28167:1220:0;;;;;;101:9:-1;95:2;81:12;77:21;67:8;63:36;60:51;-1:-1;;;25:12;22:29;11:108;8:2;;;132:1;129;122:12;8:2;28167:1220:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;28167:1220:0;;;;;;;;-1:-1:-1;28167:1220:0;;-1:-1:-1;;;;;11:28;;8:2;;;52:1;49;42:12;8:2;28167:1220:0;;41:9:-1;34:4;18:14;14:25;11:40;8:2;;;64:1;61;54:12;8:2;28167:1220:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;-1:-1;;;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;28167:1220:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;28167:1220:0;;-1:-1:-1;28167:1220:0;;-1:-1:-1;;;;;28167:1220:0:i;63979:116::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;63979:116:0;-1:-1:-1;;;;;63979:116:0;;:::i;56662:123::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;56662:123:0;-1:-1:-1;;;;;56662:123:0;;:::i;51134:209::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;51134:209:0;;;;;;-1:-1:-1;;;;;51134:209:0;;:::i;57590:147::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;57590:147:0;;;;;;;:::i;25836:634::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;25836:634:0;;;;;;;;-1:-1:-1;;;11:28;;8:2;;;52:1;49;42:12;8:2;25836:634:0;;41:9:-1;34:4;18:14;14:25;11:40;8:2;;;64:1;61;54:12;8:2;25836:634:0;;;;;;101:9:-1;95:2;81:12;77:21;67:8;63:36;60:51;-1:-1;;;25:12;22:29;11:108;8:2;;;132:1;129;122:12;8:2;25836:634:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;25836:634:0;;;;;;;;-1:-1:-1;25836:634:0;;-1:-1:-1;;;;;11:28;;8:2;;;52:1;49;42:12;8:2;25836:634:0;;41:9:-1;34:4;18:14;14:25;11:40;8:2;;;64:1;61;54:12;8:2;25836:634:0;;;;;;101:9:-1;95:2;81:12;77:21;67:8;63:36;60:51;-1:-1;;;25:12;22:29;11:108;8:2;;;132:1;129;122:12;8:2;25836:634:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;25836:634:0;;-1:-1:-1;25836:634:0;;-1:-1:-1;;;;;25836:634:0:i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:100:-1;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;25836:634:0;;;;;;;;;;;;;;;;;55582:80;;;:::i;56516:140::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;56516:140:0;-1:-1:-1;;;;;56516:140:0;;:::i;59075:404::-;;;;;;15:3:-1;10;7:12;4:2;;;32:1;29;22:12;4:2;-1:-1;;;;;59075:404:0;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;11:28;;8:2;;;52:1;49;42:12;8:2;59075:404:0;;41:9:-1;34:4;18:14;14:25;11:40;8:2;;;64:1;61;54:12;8:2;59075:404:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;-1:-1;;;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;59075:404:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;59075:404:0;;-1:-1:-1;59075:404:0;;-1:-1:-1;;;;;59075:404:0:i;56249:136::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;56249:136:0;-1:-1:-1;;;;;56249:136:0;;:::i;61902:130::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;61902:130:0;;;;;;;;-1:-1:-1;;;11:28;;8:2;;;52:1;49;42:12;8:2;61902:130:0;;41:9:-1;34:4;18:14;14:25;11:40;8:2;;;64:1;61;54:12;8:2;61902:130:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;-1:-1;;;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;61902:130:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;61902:130:0;;-1:-1:-1;61902:130:0;;-1:-1:-1;;;;;61902:130:0:i;60953:101::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;60953:101:0;;:::i;64230:102::-;;;:::i;:::-;;;;-1:-1:-1;;;;;64230:102:0;;;;;;;;;;;;;;49220:138;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;49220:138:0;;;;;;;:::i;48181:139::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;48181:139:0;;;;;;-1:-1:-1;;;;;48181:139:0;;:::i;58418:360::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;58418:360:0;;;;;;;:::i;62231:114::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;62231:114:0;;;;;;;;-1:-1:-1;;;11:28;;8:2;;;52:1;49;42:12;8:2;62231:114:0;;41:9:-1;34:4;18:14;14:25;11:40;8:2;;;64:1;61;54:12;8:2;62231:114:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;-1:-1;;;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;62231:114:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;62231:114:0;;-1:-1:-1;62231:114:0;;-1:-1:-1;;;;;62231:114:0:i;62546:120::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;62546:120:0;;:::i;55961:20::-;;;:::i;56391:119::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;56391:119:0;-1:-1:-1;;;;;56391:119:0;;:::i;46926:49::-;;;:::i;26543:311::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;26543:311:0;;;;;;;;;;:::i;63865:110::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;63865:110:0;-1:-1:-1;;;;;63865:110:0;;:::i;57743:667::-;;;;;;15:3:-1;10;7:12;4:2;;;32:1;29;22:12;4:2;57743:667:0;;;;;;;;;;;;;;;;;;-1:-1:-1;;;11:28;;8:2;;;52:1;49;42:12;8:2;57743:667:0;;41:9:-1;34:4;18:14;14:25;11:40;8:2;;;64:1;61;54:12;8:2;57743:667:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;-1:-1;;;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;57743:667:0;;;;;;;;;;;-1:-1:-1;;;11:28;;8:2;;;52:1;49;42:12;8:2;57743:667:0;;41:9:-1;34:4;18:14;14:25;11:40;8:2;;;64:1;61;54:12;8:2;57743:667:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;-1:-1;;;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;-1:-1;57743:667:0;;-1:-1:-1;57743:667:0;-1:-1:-1;57743:667:0;:::i;64099:127::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;64099:127:0;-1:-1:-1;;;;;64099:127:0;;:::i;57176:108::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;57176:108:0;;:::i;63023:218::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;63023:218:0;;;;;;;;;;;;;;-1:-1:-1;;;11:28;;8:2;;;52:1;49;42:12;8:2;63023:218:0;;41:9:-1;34:4;18:14;14:25;11:40;8:2;;;64:1;61;54:12;8:2;63023:218:0;;;;;;101:9:-1;95:2;81:12;77:21;67:8;63:36;60:51;-1:-1;;;25:12;22:29;11:108;8:2;;;132:1;129;122:12;8:2;-1:-1;63023:218:0;;-1:-1:-1;63023:218:0;-1:-1:-1;63023:218:0;:::i;48494:127::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;48494:127:0;;:::i;55743:43::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;55743:43:0;;:::i;55515:62::-;;;:::i;50397:230::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;50397:230:0;;;;;;-1:-1:-1;;;;;50397:230:0;;:::i;62040:188::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;62040:188:0;;;;;;;;;;;;;;;-1:-1:-1;;;11:28;;8:2;;;52:1;49;42:12;8:2;62040:188:0;;41:9:-1;34:4;18:14;14:25;11:40;8:2;;;64:1;61;54:12;8:2;62040:188:0;;;;;;101:9:-1;95:2;81:12;77:21;67:8;63:36;60:51;-1:-1;;;25:12;22:29;11:108;8:2;;;132:1;129;122:12;8:2;62040:188:0;;;;;;;;;;;-1:-1:-1;;;11:28;;8:2;;;52:1;49;42:12;8:2;62040:188:0;;41:9:-1;34:4;18:14;14:25;11:40;8:2;;;64:1;61;54:12;8:2;62040:188:0;;;;;;101:9:-1;95:2;81:12;77:21;67:8;63:36;60:51;-1:-1;;;25:12;22:29;11:108;8:2;;;132:1;129;122:12;8:2;-1:-1;62040:188:0;;-1:-1:-1;62040:188:0;-1:-1:-1;62040:188:0;:::i;62351:91::-;;;:::i;59622:431::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;59622:431:0;;;;;;;;;;:::i;27166:924::-;;;;;;15:3:-1;10;7:12;4:2;;;32:1;29;22:12;4:2;-1:-1;;;;;27166:924:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;11:28;;8:2;;;52:1;49;42:12;8:2;27166:924:0;;41:9:-1;34:4;18:14;14:25;11:40;8:2;;;64:1;61;54:12;8:2;27166:924:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;-1:-1;;;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;27166:924:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;27166:924:0;;-1:-1:-1;27166:924:0;;-1:-1:-1;;;;;27166:924:0:i;63386:118::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;63386:118:0;-1:-1:-1;;;;;63386:118:0;;:::i;62672:270::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;62672:270:0;;;;;;;;;;;;;:::i;55842:49::-;;;;;;;;;;;;;:::o;25447:223::-;25525:7;-1:-1:-1;;;;;25553:21:0;;25545:77;;;;-1:-1:-1;;;25545:77:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;25640:13:0;;;;:9;:13;;;;;;;;-1:-1:-1;;;;;25640:22:0;;;;;;;;;;25447:223;;;;;:::o;10096:142::-;-1:-1:-1;;;;;;10197:33:0;;10173:4;10197:33;;;;;;;;;;;;;10096:142;;;;:::o;55916:18::-;;;;;;;;;;;;;;;-1:-1:-1;;55916:18:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;56791:219::-;56856:13;56886:12;56894:3;56886:7;:12::i;:::-;56878:62;;;;-1:-1:-1;;;56878:62:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56954:50;56972:8;56976:3;56972;:8::i;:::-;56982:21;56999:3;56982:16;:21::i;:::-;56954:17;:50::i;57418:166::-;55629:33;;;-1:-1:-1;;;;;;;;;;;55629:33:0;;;;;;;;;;;;53164:27;55629:33;53178:12;:10;:12::i;:::-;53164:7;:27::i;:::-;53206:10;53142:85;;;;;-1:-1:-1;;;53142:85:0;;;;;;;;;;;;-1:-1:-1;;53142:85:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57550:28:::1;57558:19;57550:7;:28::i;:::-;57418:166:::0;;:::o;49547:114::-;49604:7;49631:12;;;:6;:12;;;;;:22;;;;49547:114::o;55791:46::-;;;;;;;;;;;;;:::o;28167:1220::-;28432:7;:14;28418:3;:10;:28;28410:81;;;;-1:-1:-1;;;28410:81:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;28510:16:0;;28502:66;;;;-1:-1:-1;;;28502:66:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28609:12;:10;:12::i;:::-;-1:-1:-1;;;;;28601:20:0;:4;-1:-1:-1;;;;;28601:20:0;;:60;;;;28625:36;28642:4;28648:12;:10;:12::i;:::-;28625:16;:36::i;:::-;28579:160;;;;-1:-1:-1;;;28579:160:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28752:16;28771:12;:10;:12::i;:::-;28752:31;;28796:60;28817:8;28827:4;28833:2;28837:3;28842:7;28851:4;28796:20;:60::i;:::-;28874:9;28869:358;28893:3;:10;28889:1;:14;28869:358;;;28925:10;28938:3;28942:1;28938:6;;;;;;;;;;;;;;28925:19;;28959:14;28976:7;28984:1;28976:10;;;;;;;;;;;;;;28959:27;;29025:126;29067:6;29025:126;;;;;;;;;;;;;;;;;:9;:13;29035:2;29025:13;;;;;;;;;;;:19;29039:4;-1:-1:-1;;;;;29025:19:0;-1:-1:-1;;;;;29025:19:0;;;;;;;;;;;;;:23;;:126;;;;;:::i;:::-;29003:13;;;;:9;:13;;;;;;;;-1:-1:-1;;;;;29003:19:0;;;;;;;;;;:148;;;;29186:17;;;;;;:29;;29208:6;29186:21;:29::i;:::-;29166:13;;;;:9;:13;;;;;;;;-1:-1:-1;;;;;29166:17:0;;;;;;;;;;:49;-1:-1:-1;28905:3:0;28869:358;;;;29274:2;-1:-1:-1;;;;;29244:47:0;29268:4;-1:-1:-1;;;;;29244:47:0;29258:8;-1:-1:-1;;;;;29244:47:0;;29278:3;29283:7;29244:47;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;29244:47:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;29244:47:0;;;;;;;;;;;;;;;;;;;29304:75;29340:8;29350:4;29356:2;29360:3;29365:7;29374:4;29304:35;:75::i;:::-;28167:1220;;;;;;:::o;63979:116::-;64034:4;64054:35;64034:4;64081:7;64054;:35::i;56662:123::-;46971:4;53164:27;46971:4;53178:12;:10;:12::i;53164:27::-;53206:10;53142:85;;;;;-1:-1:-1;;;53142:85:0;;;;;;;;;;;;-1:-1:-1;;53142:85:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;55553:24:0::1;::::0;;-1:-1:-1;;;55553:24:0;;;;;;;;::::1;::::0;;;56748:31:::1;::::0;56771:7;56748:10:::1;:31::i;51134:209::-:0;51232:12;:10;:12::i;:::-;-1:-1:-1;;;;;51221:23:0;:7;-1:-1:-1;;;;;51221:23:0;;51213:83;;;;-1:-1:-1;;;51213:83:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51309:26;51321:4;51327:7;51309:11;:26::i;57590:147::-;55629:33;;;-1:-1:-1;;;;;;;;;;;55629:33:0;;;;;;;;;;;;53164:27;55629:33;53178:12;:10;:12::i;53164:27::-;53206:10;53142:85;;;;;-1:-1:-1;;;53142:85:0;;;;;;;;;;;;-1:-1:-1;;53142:85:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;57699:19:0::1;::::0;;;:14:::1;:19;::::0;;;;;:32;57590:147::o;25836:634::-;26000:16;26061:3;:10;26042:8;:15;:29;26034:83;;;;-1:-1:-1;;;26034:83:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26130:30;26177:8;:15;26163:30;;;5:9:-1;2:2;;;27:1;24;17:12;2:2;26163:30:0;;;;;;;;;;;;;;;;;;;;;;;29:2:-1;21:6;17:15;125:4;109:14;101:6;88:42;144:17;;-1:-1;26163:30:0;-1:-1:-1;26130:63:0;-1:-1:-1;26211:9:0;26206:224;26230:8;:15;26226:1;:19;26206:224;;;26298:1;-1:-1:-1;;;;;26275:25:0;:8;26284:1;26275:11;;;;;;;;;;;;;;-1:-1:-1;;;;;26275:25:0;;;26267:87;;;;-1:-1:-1;;;26267:87:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26388:9;:17;26398:3;26402:1;26398:6;;;;;;;;;;;;;;26388:17;;;;;;;;;;;:30;26406:8;26415:1;26406:11;;;;;;;;;;;;;;-1:-1:-1;;;;;26388:30:0;-1:-1:-1;;;;;26388:30:0;;;;;;;;;;;;;26369:13;26383:1;26369:16;;;;;;;;;;;;;;;;;:49;26247:3;;26206:224;;;-1:-1:-1;26449:13:0;25836:634;-1:-1:-1;;;25836:634:0:o;55582:80::-;55629:33;;;-1:-1:-1;;;;;;;;;;;55629:33:0;;;;;;;;;;;;55582:80;:::o;56516:140::-;46971:4;53164:27;46971:4;53178:12;:10;:12::i;53164:27::-;53206:10;53142:85;;;;;-1:-1:-1;;;53142:85:0;;;;;;;;;;;;-1:-1:-1;;53142:85:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;55629:33:0::1;::::0;;-1:-1:-1;;;;;;;;;;;55629:33:0;;;;;;;;::::1;::::0;;;56610:40:::1;::::0;56642:7;56610:10:::1;:40::i;59075:404::-:0;55553:24;;;-1:-1:-1;;;55553:24:0;;;;;;;;;;;;53164:27;55553:24;53178:12;:10;:12::i;53164:27::-;53206:10;53142:85;;;;;-1:-1:-1;;;53142:85:0;;;;;;;;;;;;-1:-1:-1;;53142:85:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;59219:15:0::1;59267:20:::0;;;:11:::1;:20;::::0;;;;;59237:3;;59219:15;59267:35:::1;::::0;59292:9;59267:35:::1;:24;:35;:::i;:::-;59330:23;::::0;;;:14:::1;:23;::::0;;;;;59247:55;;-1:-1:-1;59317:36:0;::::1;;59309:67;;;::::0;;-1:-1:-1;;;59309:67:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;59309:67:0;;;;;;;;;;;;;::::1;;59383:33;59389:3;59394;59399:9;59410:5;59383;:33::i;:::-;59442:16;::::0;;;:11:::1;:16;::::0;;;;;:31:::1;::::0;59463:9;59442:31:::1;:20;:31;:::i;:::-;59423:16;::::0;;;:11:::1;:16;::::0;;;;;:50;;;;-1:-1:-1;;;;;;59075:404:0:o;56249:136::-;46971:4;53164:27;46971:4;53178:12;:10;:12::i;53164:27::-;53206:10;53142:85;;;;;-1:-1:-1;;;53142:85:0;;;;;;;;;;;;-1:-1:-1;;53142:85:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;55629:33:0::1;::::0;;-1:-1:-1;;;;;;;;;;;55629:33:0;;;;;;;;::::1;::::0;;;56340:39:::1;::::0;56371:7;56340:9:::1;:39::i;61902:130::-:0;55629:33;;;-1:-1:-1;;;;;;;;;;;55629:33:0;;;;;;;;;;;;53164:27;55629:33;53178:12;:10;:12::i;53164:27::-;53206:10;53142:85;;;;;-1:-1:-1;;;53142:85:0;;;;;;;;;;;;-1:-1:-1;;53142:85:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61997:27:::1;62017:6;61997:19;:27::i;60953:101::-:0;61006:7;61029:19;;;:14;:19;;;;;;;60953:101::o;64230:102::-;64268:7;64291:35;64268:7;;64291:13;:35::i;:::-;64284:42;;64230:102;;:::o;49220:138::-;49293:7;49320:12;;;:6;:12;;;;;:30;;49344:5;49320:30;:23;:30;:::i;:::-;49313:37;49220:138;-1:-1:-1;;;49220:138:0:o;48181:139::-;48250:4;48274:12;;;:6;:12;;;;;:38;;48304:7;48274:38;:29;:38;:::i;58418:360::-;55629:33;;;-1:-1:-1;;;;;;;;;;;55629:33:0;;;;;;;;;;;;53164:27;55629:33;53178:12;:10;:12::i;53164:27::-;53206:10;53142:85;;;;;-1:-1:-1;;;53142:85:0;;;;;;;;;;;;-1:-1:-1;;53142:85:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;58556:11:0::1;::::0;58574:199:::1;58595:13;58591:1;:17;58574:199;;;58634:17;:15;:17::i;:::-;58628:23;;58662;:21;:23::i;:::-;58696:13;::::0;;;:8:::1;:13;::::0;;;;;;;:26;;-1:-1:-1;;;;;;58696:26:0::1;58712:10;58696:26;::::0;;58733:14:::1;:19:::0;;;;;:32;;;58696:26;58610:3:::1;58574:199;;;;53238:1;58418:360:::0;;;:::o;62231:114::-;55629:33;;;-1:-1:-1;;;;;;;;;;;55629:33:0;;;;;;;;;;;;53164:27;55629:33;53178:12;:10;:12::i;53164:27::-;53206:10;53142:85;;;;;-1:-1:-1;;;53142:85:0;;;;;;;;;;;;-1:-1:-1;;53142:85:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;62318:21:0;;::::1;::::0;:12:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;:::-;;62231:114:::0;;:::o;62546:120::-;55629:33;;;-1:-1:-1;;;;;;;;;;;55629:33:0;;;;;;;;;;;;53164:27;55629:33;53178:12;:10;:12::i;53164:27::-;53206:10;53142:85;;;;;-1:-1:-1;;;53142:85:0;;;;;;;;;;;;-1:-1:-1;;53142:85:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;62644:16:0::1;::::0;;;:11:::1;:16;::::0;;;;;;;;62622:14:::1;:19:::0;;;;;;:38;62546:120::o;55961:20::-;;;;;;;;;;;;;;;-1:-1:-1;;55961:20:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56391:119;46971:4;53164:27;46971:4;53178:12;:10;:12::i;53164:27::-;53206:10;53142:85;;;;;-1:-1:-1;;;53142:85:0;;;;;;;;;;;;-1:-1:-1;;53142:85:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;55553:24:0::1;::::0;;-1:-1:-1;;;55553:24:0;;;;;;;;::::1;::::0;;;56474:30:::1;::::0;56496:7;56474:9:::1;:30::i;46926:49::-:0;46971:4;46926:49;:::o;26543:311::-;26662:8;-1:-1:-1;;;;;26646:24:0;:12;:10;:12::i;:::-;-1:-1:-1;;;;;26646:24:0;;;26638:78;;;;-1:-1:-1;;;26638:78:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26774:8;26729:18;:32;26748:12;:10;:12::i;:::-;-1:-1:-1;;;;;26729:32:0;;;;;;;;;;;;;;;;;-1:-1:-1;26729:32:0;;;:42;;;;;;;;;;;;:53;;-1:-1:-1;;26729:53:0;;;;;;;;;;;26813:12;:10;:12::i;:::-;26798:48;;;;;;;;;;-1:-1:-1;;;;;26798:48:0;;;;;;;;;;;;;;26543:311;;:::o;63865:110::-;55553:24;;;-1:-1:-1;;;55553:24:0;;;;;;;;;;;;63921:4;;63941:28;;63961:7;63941;:28::i;57743:667::-;55629:33;;;-1:-1:-1;;;;;;;;;;;55629:33:0;;;;;;;;;;;;57925:15;;53164:27;55629:33;53178:12;:10;:12::i;53164:27::-;53206:10;53142:85;;;;;-1:-1:-1;;;53142:85:0;;;;;;;;;;;;-1:-1:-1;;53142:85:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57983:10:::1;57965:14;:28;;57949:107;;;;-1:-1:-1::0;;;57949:107:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58063:11;58077:17;:15;:17::i;:::-;58063:31;;58101:23;:21;:23::i;:::-;58131:13;::::0;;;:8:::1;:13;::::0;;;;:26;;-1:-1:-1;;;;;;58131:26:0::1;58147:10;58131:26;::::0;;58170:22;;58166:64:::1;;58218:3;58208:14;58212:4;;58208:14;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16:::0;;::::1;74:27:::0;58208:14:0::1;::::0;137:4:-1::1;117:14:::0;;::::1;-1:-1:::0;;113:30:::1;157:16:::0;;::::1;58208:14:0::0;;::::1;::::0;-1:-1:-1;58208:14:0;;-1:-1:-1;;;;58208:14:0::1;58166:64;58242:19:::0;;58238:70:::1;;58263:45;58269:10;58281:3;58286:14;58302:5;;58263:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16:::0;::::1;74:27:::0;;;;-1:-1;58263:5:0::1;::::0;-1:-1:-1;;;58263:45:0:i:1;:::-;58315:16;::::0;;;:11:::1;:16;::::0;;;;;;;:33;;;58355:14:::1;:19:::0;;;;;:32;;;58327:3;-1:-1:-1;57743:667:0;;;;;;;;;:::o;64099:127::-;55629:33;;;-1:-1:-1;;;;;;;;;;;55629:33:0;;;;;;;;;;;;64163:4;;64183:37;;64212:7;64183;:37::i;57176:108::-;57239:7;57262:16;;;:11;:16;;;;;;;57176:108::o;63023:218::-;55553:24;;;-1:-1:-1;;;55553:24:0;;;;;;;;;;;;53164:27;55553:24;53178:12;:10;:12::i;53164:27::-;53206:10;53142:85;;;;;-1:-1:-1;;;53142:85:0;;;;;;;;;;;;-1:-1:-1;;53142:85:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;63144:9:0::1;63139:97;63159:21:::0;;::::1;63139:97;;;63196:32;63202:10;;63213:1;63202:13;;;;;;;;;;;;;-1:-1:-1::0;;;;;63202:13:0::1;63217:3;63222:1;63196:32;;;;;;;;;;;::::0;:5:::1;:32::i;:::-;63182:3;;63139:97;;48494:127:::0;48557:7;48584:12;;;:6;:12;;;;;:29;;:27;:29::i;55743:43::-;;;;;;;;;;;;-1:-1:-1;;;;;55743:43:0;;:::o;55515:62::-;55553:24;;;-1:-1:-1;;;55553:24:0;;;;;;;;;;;;55515:62;:::o;50397:230::-;50490:12;;;;:6;:12;;;;;:22;;;50482:45;;50514:12;:10;:12::i;50482:45::-;50474:106;;;;-1:-1:-1;;;50474:106:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62040:188;55553:24;;;-1:-1:-1;;;55553:24:0;;;;;;;;;;;;53164:27;55553:24;53178:12;:10;:12::i;53164:27::-;53206:10;53142:85;;;;;-1:-1:-1;;;53142:85:0;;;;;;;;;;;;-1:-1:-1;;53142:85:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62186:34:::1;62197:4;62203:3;;62186:34;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16:::0;::::1;74:27:::0;;;;-1:-1;;62186:34:0::1;::::0;;::::1;::::0;;::::1;::::0;;;;;;;;;;;;;-1:-1:-1;62208:7:0;;-1:-1:-1;62208:7:0;;;;62186:34;::::1;::::0;62208:7;;62186:34;62208:7;62186:34;1:33:-1::1;99:1;81:16:::0;::::1;74:27:::0;;;-1:-1;62186:34:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;;-1:-1:-1;62186:10:0::1;::::0;-1:-1:-1;;62186:34:0:i:1;62351:91::-:0;62424:12;62417:19;;;;;;;;-1:-1:-1;;62417:19:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62395:13;;62417:19;;62424:12;;62417:19;;62424:12;62417:19;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62351:91;:::o;59622:431::-;59876:20;;59916:29;;;-1:-1:-1;;;59916:29:0;;-1:-1:-1;;;;;59916:29:0;;;;;;;;;59746:15;;59876:20;;;59908:51;;;59876:20;;59916:21;;:29;;;;;;;;;;;;;;;59876:20;59916:29;;;2:2:-1;;;;27:1;24;17:12;2:2;59916:29:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;59916:29:0;;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;59916:29:0;-1:-1:-1;;;;;59908:51:0;;59904:85;;;59977:4;59970:11;;;;;59904:85;60004:43;60029:6;60037:9;60004:24;:43::i;:::-;59997:50;59622:431;-1:-1:-1;;;;59622:431:0:o;27166:924::-;-1:-1:-1;;;;;27392:16:0;;27384:66;;;;-1:-1:-1;;;27384:66:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27491:12;:10;:12::i;:::-;-1:-1:-1;;;;;27483:20:0;:4;-1:-1:-1;;;;;27483:20:0;;:60;;;;27507:36;27524:4;27530:12;:10;:12::i;27507:36::-;27461:151;;;;-1:-1:-1;;;27461:151:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27625:16;27644:12;:10;:12::i;:::-;27625:31;;27669:96;27690:8;27700:4;27706:2;27710:21;27728:2;27710:17;:21::i;:::-;27733:25;27751:6;27733:17;:25::i;:::-;27760:4;27669:20;:96::i;:::-;27800:77;27824:6;27800:77;;;;;;;;;;;;;;;;;:13;;;;:9;:13;;;;;;;;-1:-1:-1;;;;;27800:19:0;;;;;;;;;;;:77;;:23;:77;:::i;:::-;27778:13;;;;:9;:13;;;;;;;;-1:-1:-1;;;;;27778:19:0;;;;;;;;;;:99;;;;27908:17;;;;;;:29;;27930:6;27908:21;:29::i;:::-;27888:13;;;;:9;:13;;;;;;;;-1:-1:-1;;;;;27888:17:0;;;;;;;;;;;;;:49;;;;27955:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28014:68;28045:8;28055:4;28061:2;28065;28069:6;28077:4;28014:30;:68::i;63386:118::-;46971:4;53164:27;46971:4;53178:12;:10;:12::i;53164:27::-;53206:10;53142:85;;;;;-1:-1:-1;;;53142:85:0;;;;;;;;;;;;-1:-1:-1;;53142:85:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63470:28:::1;63489:8;63470:18;:28::i;62672:270::-:0;55553:24;;;-1:-1:-1;;;55553:24:0;;;;;;;;;;;;53164:27;55553:24;53178:12;:10;:12::i;53164:27::-;53206:10;53142:85;;;;;-1:-1:-1;;;53142:85:0;;;;;;;;;;;;-1:-1:-1;;53142:85:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62843:7:::1;62815:24;62825:8;62835:3;62815:9;:24::i;:::-;:35;;62799:101;;;::::0;;-1:-1:-1;;;62799:101:0;;::::1;;::::0;::::1;::::0;;;;;;;::::1;::::0;;;;;;;;;;;;;::::1;;62907:29;62913:8;62923:3;62928:7;62907:5;:29::i;:::-;62672:270:::0;;;;:::o;60277:114::-;60338:4;60358:13;;;:8;:13;;;;;;-1:-1:-1;;;;;60358:13:0;:27;;;60277:114::o;54835:440::-;54903:27;54946:7;54942:40;;-1:-1:-1;54964:10:0;;;;;;;;;;;;-1:-1:-1;;;54964:10:0;;;;;;54942:40;55000:2;54988:9;55027:53;55034:6;;55027:53;;55051:5;;55070:2;55065:7;;;;55027:53;;;55086:17;55116:3;55106:14;;;5:9:-1;2:2;;;27:1;24;17:12;2:2;55106:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;21:6:-1;;108:14;55106::0;87:42:-1;143:17;;-1:-1;55106:14:0;-1:-1:-1;55086:34:0;-1:-1:-1;;;55139:7:0;;55153:91;55160:7;;55153:91;;55214:2;55209;:7;55203:2;:14;55190:29;;55178:4;55183:3;;;;;;;55178:9;;;;;;;;;;;:41;-1:-1:-1;;;;;55178:41:0;;;;;;;;-1:-1:-1;55234:2:0;55228:8;;;;55153:91;;;-1:-1:-1;55264:4:0;54835:440;-1:-1:-1;;;;54835:440:0:o;54669:160::-;54762:13;54794:29;54804:2;54808;54794:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:9;:29::i;8711:106::-;8799:10;8711:106;:::o;30229:88::-;30296:13;;;;:4;;:13;;;;;:::i;12725:192::-;12811:7;12847:12;12839:6;;;;12831:29;;;;-1:-1:-1;;;12831:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;12831:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;12883:5:0;;;12725:192::o;11822:181::-;11880:7;11912:5;;;11936:6;;;;11928:46;;;;;-1:-1:-1;;;11928:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;36072:800;36327:15;:2;-1:-1:-1;;;;;36327:13:0;;:15::i;:::-;36323:542;;;36380:2;-1:-1:-1;;;;;36363:43:0;;36407:8;36417:4;36423:3;36428:7;36437:4;36363:79;;;;;;;;;;;;;-1:-1:-1;;;;;36363:79:0;-1:-1:-1;;;;;36363:79:0;;;;;;-1:-1:-1;;;;;36363:79:0;-1:-1:-1;;;;;36363:79:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;36363:79:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;36363:79:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;36363:79:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5:9:-1;2:2;;;27:1;24;17:12;2:2;36363:79:0;;;;;;;;;;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;36363:79:0;;;36359:495;;20:4:-1;14:11;36359:495:0;30:15:-1;;93:4;75:16;72:26;69:2;;;-1:-1;109:1;111:5;;69:2;145:1;142;139;124:23;179:1;173:8;168:3;164:18;206:10;201:3;198:19;188:2;;229:1;221:9;;231:5;;;188:2;290:1;272:16;268:24;265:1;259:4;244:49;319:4;313:11;403:16;396:4;388:6;384:17;381:39;354:18;346:6;343:30;333:94;330:2;;;444:1;436:9;;452:5;;;;330:2;491:6;485:4;481:17;524:3;518:10;548:18;540:6;537:30;534:2;;;578:1;570:9;;580:5;;;;;;534:2;624:6;617:4;612:3;608:14;604:27;658:16;652:4;648:27;643:3;640:36;637:2;;;687:1;679:9;;689:5;;;;;;;637:2;739:4;719:14;-1:-1;;715:30;709:4;702:44;-1:-1;760:3;-1:-1;;;50:730;36359:495:0;;;;;;;36720:14;;-1:-1:-1;;;36720:14:0;;;;;;;;;;;;;;;;;36727:6;;36720:14;;;;;;;;;;;;;;;27:10:-1;;8:100;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;36359:495:0;36776:62;;-1:-1:-1;;;36776:62:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36359:495;-1:-1:-1;;;;;;36492:64:0;;-1:-1:-1;;;36492:64:0;36488:163;;36581:50;;-1:-1:-1;;;36581:50:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36488:163;36443:223;36072:800;;;;;;:::o;52573:192::-;52648:12;;;;:6;:12;;;;;:36;;52676:7;52648:36;:27;:36;:::i;:::-;52644:114;;;52733:12;:10;:12::i;:::-;-1:-1:-1;;;;;52706:40:0;52724:7;-1:-1:-1;;;;;52706:40:0;52718:4;52706:40;;;;;;;;;;52573:192;;:::o;30713:583::-;-1:-1:-1;;;;;30828:21:0;;30820:67;;;;-1:-1:-1;;;30820:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30900:16;30919:12;:10;:12::i;:::-;30900:31;;30944:107;30965:8;30983:1;30987:7;30996:21;31014:2;30996:17;:21::i;30944:107::-;31089:13;;;;:9;:13;;;;;;;;-1:-1:-1;;;;;31089:22:0;;;;;;;;;;:34;;31116:6;31089:34;:26;:34;:::i;:::-;31064:13;;;;:9;:13;;;;;;;;-1:-1:-1;;;;;31064:22:0;;;;;;;;;;;;:59;;;;31139:57;;;;;;;;;;;;;31064:22;;31139:57;;;;;;;;;;;;31209:79;31240:8;31258:1;31262:7;31271:2;31275:6;31283:4;31209:30;:79::i;49923:229::-;50017:12;;;;:6;:12;;;;;:22;;;50009:45;;50041:12;:10;:12::i;50009:45::-;50001:105;;;;-1:-1:-1;;;50001:105:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50119:25;50130:4;50136:7;50119:10;:25::i;43427:149::-;43501:7;43544:22;43548:3;43560:5;43544:3;:22::i;42722:158::-;42802:4;42826:46;42836:3;-1:-1:-1;;;;;42856:14:0;;42826:9;:46::i;60529:109::-;60610:15;;60587:7;;60610:22;;60630:1;60610:22;:19;:22;:::i;60709:80::-;60766:15;:17;;;;;;60709:80::o;42966:117::-;43029:7;43056:19;43064:3;43056:7;:19::i;31652:715::-;-1:-1:-1;;;;;31787:16:0;;31779:62;;;;-1:-1:-1;;;31779:62:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31874:7;:14;31860:3;:10;:28;31852:81;;;;-1:-1:-1;;;31852:81:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31946:16;31965:12;:10;:12::i;:::-;31946:31;;31990:66;32011:8;32029:1;32033:2;32037:3;32042:7;32051:4;31990:20;:66::i;:::-;32074:6;32069:126;32090:3;:10;32086:1;:14;32069:126;;;32146:37;32161:9;:17;32171:3;32175:1;32171:6;;;;;;;;;;;;;;32161:17;;;;;;;;;;;:21;32179:2;-1:-1:-1;;;;;32161:21:0;-1:-1:-1;;;;;32161:21:0;;;;;;;;;;;;;32146:7;32154:1;32146:10;;;;;;;;;;;;;;:14;;:37;;;;:::i;:::-;32122:9;:17;32132:3;32136:1;32132:6;;;;;;;;;;;;;;;;;;;32122:17;;;;;;;;;;;;;-1:-1:-1;32122:17:0;;;-1:-1:-1;;;;;32122:21:0;;;;;;;;;:61;32102:3;;32069:126;;;;32248:2;-1:-1:-1;;;;;32212:53:0;32244:1;-1:-1:-1;;;;;32212:53:0;32226:8;-1:-1:-1;;;;;32212:53:0;;32252:3;32257:7;32212:53;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;32212:53:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;32212:53:0;;;;;;;;;;;;;;;;;;;32278:81;32314:8;32332:1;32336:2;32340:3;32345:7;32354:4;32278:35;:81::i;26926:168::-;-1:-1:-1;;;;;27049:27:0;;;27025:4;27049:27;;;:18;:27;;;;;;;;:37;;;;;;;;;;;;;;;26926:168::o;36880:198::-;37000:16;;;37014:1;37000:16;;;;;;;;;36946;;;;37000;;;;;;;109:14:-1;37000:16:0;88:42:-1;144:17;;-1:-1;37000:16:0;36975:41;;37038:7;37027:5;37033:1;37027:8;;;;;;;;;;;;;;;;;:18;37065:5;36880:198;-1:-1:-1;;36880:198:0:o;35301:763::-;35531:15;:2;-1:-1:-1;;;;;35531:13:0;;:15::i;:::-;35527:530;;;35584:2;-1:-1:-1;;;;;35567:38:0;;35606:8;35616:4;35622:2;35626:6;35634:4;35567:72;;;;;;;;;;;;;-1:-1:-1;;;;;35567:72:0;-1:-1:-1;;;;;35567:72:0;;;;;;-1:-1:-1;;;;;35567:72:0;-1:-1:-1;;;;;35567:72:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;35567:72:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5:9:-1;2:2;;;27:1;24;17:12;2:2;35567:72:0;;;;;;;;;;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;35567:72:0;;;35563:483;;20:4:-1;14:11;35563:483:0;30:15:-1;;93:4;75:16;72:26;69:2;;;-1:-1;109:1;111:5;;35563:483:0;-1:-1:-1;;;;;;35689:59:0;;-1:-1:-1;;;35689:59:0;35685:158;;35773:50;;-1:-1:-1;;;35773:50:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63602:259;-1:-1:-1;;;;;63672:22:0;;63664:73;;;;-1:-1:-1;;;63664:73:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63744:38;46971:4;63773:8;63744:9;:38::i;:::-;63789:66;46971:4;63819:35;46971:4;;63819:13;:35::i;:::-;63789:10;:66::i;:::-;63602:259;:::o;32626:551::-;-1:-1:-1;;;;;32722:21:0;;32714:69;;;;-1:-1:-1;;;32714:69:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32796:16;32815:12;:10;:12::i;:::-;32796:31;;32840:105;32861:8;32871:7;32888:1;32892:21;32910:2;32892:17;:21::i;:::-;32915:25;32933:6;32915:17;:25::i;:::-;32840:105;;;;;;;;;;;;:20;:105::i;:::-;32983:111;33024:6;32983:111;;;;;;;;;;;;;;;;;:13;;;;:9;:13;;;;;;;;-1:-1:-1;;;;;32983:22:0;;;;;;;;;;;:111;;:26;:111;:::i;:::-;32958:13;;;;:9;:13;;;;;;;;-1:-1:-1;;;;;32958:22:0;;;;;;;;;;;;:136;;;;33112:57;;;;;;;;;;;;;32958:13;;:22;;33112:57;;;;;;;;;;;;;32626:551;;;;:::o;53364:904::-;53816:10;;53803;;53790;;53777;;53764;;53526:13;;53573:2;;53608;;53643;;53678;;53713;;53526:13;;53764:23;;;;:36;;;:49;;;:62;53745:88;;;2:2:-1;;;;27:1;24;17:12;2:2;53745:88:0;;;;;;;;;;;;;;;;;;;;;;;;;;21:6:-1;;108:14;53745:88:0;87:42:-1;143:17;;-1:-1;53745:88:0;-1:-1:-1;53723:110:0;-1:-1:-1;53723:110:0;53881:9;;53901:61;53925:3;:10;53921:1;:14;53901:61;;;53956:3;53960:1;53956:6;;;;;;;;;;;;;;;;53942;53949:3;;;;;;53942:11;;;;;;;;;;;:20;-1:-1:-1;;;;;53942:20:0;;;;;;;;-1:-1:-1;53937:3:0;;53901:61;;;-1:-1:-1;53974:9:0;53969:61;53993:3;:10;53989:1;:14;53969:61;;;54024:3;54028:1;54024:6;;;;;;;;;;;;;;;;54010;54017:3;;;;;;54010:11;;;;;;;;;;;:20;-1:-1:-1;;;;;54010:20:0;;;;;;;;-1:-1:-1;54005:3:0;;53969:61;;;-1:-1:-1;54042:9:0;54037:61;54061:3;:10;54057:1;:14;54037:61;;;54092:3;54096:1;54092:6;;;;;;;;;;;;;;;;54078;54085:3;;;;;;54078:11;;;;;;;;;;;:20;-1:-1:-1;;;;;54078:20:0;;;;;;;;-1:-1:-1;54073:3:0;;54037:61;;;-1:-1:-1;54110:9:0;54105:61;54129:3;:10;54125:1;:14;54105:61;;;54160:3;54164:1;54160:6;;;;;;;;;;;;;;;;54146;54153:3;;;;;;54146:11;;;;;;;;;;;:20;-1:-1:-1;;;;;54146:20:0;;;;;;;;-1:-1:-1;54141:3:0;;54105:61;;;-1:-1:-1;54178:9:0;54173:61;54197:3;:10;54193:1;:14;54173:61;;;54228:3;54232:1;54228:6;;;;;;;;;;;;;;;;54214;54221:3;;;;;;54214:11;;;;;;;;;;;:20;-1:-1:-1;;;;;54214:20:0;;;;;;;;-1:-1:-1;54209:3:0;;54173:61;;;-1:-1:-1;54255:6:0;;53364:904;-1:-1:-1;;;;;;;;;;;;;53364:904:0:o;17092:619::-;17152:4;17620:20;;17463:66;17660:23;;;;;;:42;;-1:-1:-1;;17687:15:0;;;17652:51;-1:-1:-1;;17092:619:0:o;42487:149::-;42560:4;42584:44;42592:3;-1:-1:-1;;;;;42612:14:0;;42584:7;:44::i;52377:188::-;52451:12;;;;:6;:12;;;;;:33;;52476:7;52451:33;:24;:33;:::i;:::-;52447:111;;;52533:12;:10;:12::i;:::-;-1:-1:-1;;;;;52506:40:0;52524:7;-1:-1:-1;;;;;52506:40:0;52518:4;52506:40;;;;;;;;;;52377:188;;:::o;41710:204::-;41805:18;;41777:7;;41805:26;-1:-1:-1;41797:73:0;;;;-1:-1:-1;;;41797:73:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41888:3;:11;;41900:5;41888:18;;;;;;;;;;;;;;;;41881:25;;41710:204;;;;:::o;41042:129::-;41115:4;41139:19;;;:12;;;;;:19;;;;;;:24;;;41042:129::o;41257:109::-;41340:18;;41257:109::o;39412:1544::-;39478:4;39617:19;;;:12;;;:19;;;;;;39653:15;;39649:1300;;40088:18;;-1:-1:-1;;40039:14:0;;;;40088:22;;;;40015:21;;40088:3;;:22;;40375;;;;;;;;;;;;;;40355:42;;40521:9;40492:3;:11;;40504:13;40492:26;;;;;;;;;;;;;;;;;;;:38;;;;40598:23;;;40640:1;40598:12;;;:23;;;;;;40624:17;;;40598:43;;40750:17;;40598:3;;40750:17;;;;;;;;;;;;;;;;;;;;;;40845:3;:12;;:19;40858:5;40845:19;;;;;;;;;;;40838:26;;;40888:4;40881:11;;;;;;;;39649:1300;40932:5;40925:12;;;;;42168:143;42238:4;42262:41;42267:3;-1:-1:-1;;;;;42287:14:0;;38885:4;38907:21;38917:3;38922:5;38907:9;:21::i;:::-;38902:327;;-1:-1:-1;27:10;;39:1;23:18;;;45:23;;38945:11:0;:23;;;;;;;;;;;;;39128:18;;39106:19;;;:12;;;:19;;;;;;:40;;;;39161:11;;38902:327;-1:-1:-1;39212:5:0;39205:12;;61153:3185;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;61153:3185:0;;;-1:-1:-1;61153:3185:0;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;
Swarm Source
ipfs://9b935597c4e356141e207b0abb2d035cf5a2548ed1ee17ade6d5e5fce2d1ff73
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.