Feature Tip: Add private address tag to any address under My Name Tag !
ERC-1155
Source Code
Overview
Max Total Supply
1 Bearclaw
Holders
1
Transfers
-
0
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:
Bearclaw
Compiler Version
v0.5.12+commit.7709ece9
Contract Source Code (Solidity)
/**
*Submitted for verification at Etherscan.io on 2022-05-01
*/
/**
*Submitted for verification at Etherscan.io on 2022-04-27
*/
/**
*Submitted for verification at Etherscan.io on 2021-12-14
*/
/**
*Submitted for verification at Etherscan.io on 2021-12-10
*/
/**
*Submitted for verification at Etherscan.io on 2021-11-26
*/
pragma solidity ^0.5.12;
/*
* @dev Provides information about the current execution context, including the
* sender of the transaction and its data. While these are generally available
* via msg.sender and msg.data, they should not be accessed in such a direct
* manner, since when dealing with GSN meta-transactions the account sending and
* paying for execution may not be the actual sender (as far as an application
* is concerned).
*
* This contract is only required for intermediate, library-like contracts.
*/
contract Context {
// Empty internal constructor, to prevent people from mistakenly deploying
// an instance of this contract, which should be used via inheritance.
constructor () internal { }
// solhint-disable-previous-line no-empty-blocks
function _msgSender() internal view returns (address payable) {
return msg.sender;
}
function _msgData() internal view returns (bytes memory) {
this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
return msg.data;
}
}
// File: openzeppelin-solidity\contracts\ownership\Ownable.sol
pragma solidity ^0.5.12;
/**
* @dev Contract module which provides a basic access control mechanism, where
* there is an account (an owner) that can be granted exclusive access to
* specific functions.
*
* This module is used through inheritance. It will make available the modifier
* `onlyOwner`, which can be applied to your functions to restrict their use to
* the owner.
*/
contract Ownable is Context {
address private _owner;
event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
/**
* @dev Initializes the contract setting the deployer as the initial owner.
*/
constructor () internal {
address msgSender = _msgSender();
_owner = msgSender;
emit OwnershipTransferred(address(0), msgSender);
}
/**
* @dev Returns the address of the current owner.
*/
function owner() public view returns (address) {
return _owner;
}
/**
* @dev Throws if called by any account other than the owner.
*/
modifier onlyOwner() {
require(isOwner(), "Ownable: caller is not the owner");
_;
}
/**
* @dev Returns true if the caller is the current owner.
*/
function isOwner() public view returns (bool) {
return _msgSender() == _owner;
}
/**
* @dev Leaves the contract without owner. It will not be possible to call
* `onlyOwner` functions anymore. Can only be called by the current owner.
*
* NOTE: Renouncing ownership will leave the contract without an owner,
* thereby removing any functionality that is only available to the owner.
*/
function renounceOwnership() public onlyOwner {
emit OwnershipTransferred(_owner, address(0));
_owner = address(0);
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Can only be called by the current owner.
*/
function transferOwnership(address newOwner) public onlyOwner {
_transferOwnership(newOwner);
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
*/
function _transferOwnership(address newOwner) internal {
require(newOwner != address(0), "Ownable: new owner is the zero address");
emit OwnershipTransferred(_owner, newOwner);
_owner = newOwner;
}
}
// File: node_modules\multi-token-standard\contracts\interfaces\IERC165.sol
pragma solidity ^0.5.12;
/**
* @title ERC165
* @dev https://github.com/ethereum/EIPs/blob/master/EIPS/eip-165.md
*/
interface IERC165 {
/**
* @notice Query if a contract implements an interface
* @dev Interface identification is specified in ERC-165. This function
* uses less than 30,000 gas
* @param _interfaceId The interface identifier, as specified in ERC-165
*/
function supportsInterface(bytes4 _interfaceId)
external
view
returns (bool);
}
// File: node_modules\multi-token-standard\contracts\utils\SafeMath.sol
pragma solidity ^0.5.12;
/**
* @title SafeMath
* @dev Unsigned math operations with safety checks that revert on error
*/
library SafeMath {
/**
* @dev Multiplies two unsigned integers, reverts on overflow.
*/
function mul(uint256 a, uint256 b) internal pure returns (uint256) {
// Gas optimization: this is cheaper than requiring 'a' not being zero, but the
// benefit is lost if 'b' is also tested.
// See: https://github.com/OpenZeppelin/openzeppelin-solidity/pull/522
if (a == 0) {
return 0;
}
uint256 c = a * b;
require(c / a == b, "SafeMath#mul: OVERFLOW");
return c;
}
/**
* @dev Integer division of two unsigned integers truncating the quotient, reverts on division by zero.
*/
function div(uint256 a, uint256 b) internal pure returns (uint256) {
// Solidity only automatically asserts when dividing by 0
require(b > 0, "SafeMath#div: DIVISION_BY_ZERO");
uint256 c = a / b;
// assert(a == b * c + a % b); // There is no case in which this doesn't hold
return c;
}
/**
* @dev Subtracts two unsigned integers, reverts on overflow (i.e. if subtrahend is greater than minuend).
*/
function sub(uint256 a, uint256 b) internal pure returns (uint256) {
require(b <= a, "SafeMath#sub: UNDERFLOW");
uint256 c = a - b;
return c;
}
/**
* @dev Adds two unsigned integers, reverts on overflow.
*/
function add(uint256 a, uint256 b) internal pure returns (uint256) {
uint256 c = a + b;
require(c >= a, "SafeMath#add: OVERFLOW");
return c;
}
/**
* @dev Divides two unsigned integers and returns the remainder (unsigned integer modulo),
* reverts when dividing by zero.
*/
function mod(uint256 a, uint256 b) internal pure returns (uint256) {
require(b != 0, "SafeMath#mod: DIVISION_BY_ZERO");
return a % b;
}
}
// File: node_modules\multi-token-standard\contracts\interfaces\IERC1155TokenReceiver.sol
pragma solidity ^0.5.12;
/**
* @dev ERC-1155 interface for accepting safe transfers.
*/
interface IERC1155TokenReceiver {
/**
* @notice Handle the receipt of a single ERC1155 token type
* @dev An ERC1155-compliant smart contract MUST call this function on the token recipient contract, at the end of a `safeTransferFrom` after the balance has been updated
* This function MAY throw to revert and reject the transfer
* Return of other amount than the magic value MUST result in the transaction being reverted
* Note: The token contract address is always the message sender
* @param _operator The address which called the `safeTransferFrom` function
* @param _from The address which previously owned the token
* @param _id The id of the token being transferred
* @param _amount The amount of tokens being transferred
* @param _data Additional data with no specified format
* @return `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))`
*/
function onERC1155Received(address _operator, address _from, uint256 _id, uint256 _amount, bytes calldata _data) external returns(bytes4);
/**
* @notice Handle the receipt of multiple ERC1155 token types
* @dev An ERC1155-compliant smart contract MUST call this function on the token recipient contract, at the end of a `safeBatchTransferFrom` after the balances have been updated
* This function MAY throw to revert and reject the transfer
* Return of other amount than the magic value WILL result in the transaction being reverted
* Note: The token contract address is always the message sender
* @param _operator The address which called the `safeBatchTransferFrom` function
* @param _from The address which previously owned the token
* @param _ids An array containing ids of each token being transferred
* @param _amounts An array containing amounts of each token being transferred
* @param _data Additional data with no specified format
* @return `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))`
*/
function onERC1155BatchReceived(address _operator, address _from, uint256[] calldata _ids, uint256[] calldata _amounts, bytes calldata _data) external returns(bytes4);
/**
* @notice Indicates whether a contract implements the `ERC1155TokenReceiver` functions and so can accept ERC1155 token types.
* @param interfaceID The ERC-165 interface ID that is queried for support.s
* @dev This function MUST return true if it implements the ERC1155TokenReceiver interface and ERC-165 interface.
* This function MUST NOT consume more than 5,000 gas.
* @return Wheter ERC-165 or ERC1155TokenReceiver interfaces are supported.
*/
function supportsInterface(bytes4 interfaceID) external view returns (bool);
}
// File: node_modules\multi-token-standard\contracts\interfaces\IERC1155.sol
pragma solidity ^0.5.12;
interface IERC1155 {
// Events
/**
* @dev Either TransferSingle or TransferBatch MUST emit when tokens are transferred, including zero amount transfers as well as minting or burning
* Operator MUST be msg.sender
* When minting/creating tokens, the `_from` field MUST be set to `0x0`
* When burning/destroying tokens, the `_to` field MUST be set to `0x0`
* The total amount transferred from address 0x0 minus the total amount transferred to 0x0 may be used by clients and exchanges to be added to the "circulating supply" for a given token ID
* To broadcast the existence of a token ID with no initial balance, the contract SHOULD emit the TransferSingle event from `0x0` to `0x0`, with the token creator as `_operator`, and a `_amount` of 0
*/
event TransferSingle(address indexed _operator, address indexed _from, address indexed _to, uint256 _id, uint256 _amount);
/**
* @dev Either TransferSingle or TransferBatch MUST emit when tokens are transferred, including zero amount transfers as well as minting or burning
* Operator MUST be msg.sender
* When minting/creating tokens, the `_from` field MUST be set to `0x0`
* When burning/destroying tokens, the `_to` field MUST be set to `0x0`
* The total amount transferred from address 0x0 minus the total amount transferred to 0x0 may be used by clients and exchanges to be added to the "circulating supply" for a given token ID
* To broadcast the existence of multiple token IDs with no initial balance, this SHOULD emit the TransferBatch event from `0x0` to `0x0`, with the token creator as `_operator`, and a `_amount` of 0
*/
event TransferBatch(address indexed _operator, address indexed _from, address indexed _to, uint256[] _ids, uint256[] _amounts);
/**
* @dev MUST emit when an approval is updated
*/
event ApprovalForAll(address indexed _owner, address indexed _operator, bool _approved);
/**
* @dev MUST emit when the URI is updated for a token ID
* URIs are defined in RFC 3986
* The URI MUST point a JSON file that conforms to the "ERC-1155 Metadata JSON Schema"
*/
event URI(string _amount, uint256 indexed _id);
/**
* @notice Transfers amount of an _id from the _from address to the _to address specified
* @dev MUST emit TransferSingle event on success
* Caller must be approved to manage the _from account's tokens (see isApprovedForAll)
* MUST throw if `_to` is the zero address
* MUST throw if balance of sender for token `_id` is lower than the `_amount` sent
* MUST throw on any other error
* When transfer is complete, this function MUST check if `_to` is a smart contract (code size > 0). If so, it MUST call `onERC1155Received` on `_to` and revert if the return amount is not `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))`
* @param _from Source address
* @param _to Target address
* @param _id ID of the token type
* @param _amount Transfered amount
* @param _data Additional data with no specified format, sent in call to `_to`
*/
function safeTransferFrom(address _from, address _to, uint256 _id, uint256 _amount, bytes calldata _data) external;
/**
* @notice Send multiple types of Tokens from the _from address to the _to address (with safety call)
* @dev MUST emit TransferBatch event on success
* Caller must be approved to manage the _from account's tokens (see isApprovedForAll)
* MUST throw if `_to` is the zero address
* MUST throw if length of `_ids` is not the same as length of `_amounts`
* MUST throw if any of the balance of sender for token `_ids` is lower than the respective `_amounts` sent
* MUST throw on any other error
* When transfer is complete, this function MUST check if `_to` is a smart contract (code size > 0). If so, it MUST call `onERC1155BatchReceived` on `_to` and revert if the return amount is not `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))`
* Transfers and events MUST occur in the array order they were submitted (_ids[0] before _ids[1], etc)
* @param _from Source addresses
* @param _to Target addresses
* @param _ids IDs of each token type
* @param _amounts Transfer amounts per token type
* @param _data Additional data with no specified format, sent in call to `_to`
*/
function safeBatchTransferFrom(address _from, address _to, uint256[] calldata _ids, uint256[] calldata _amounts, bytes calldata _data) external;
/**
* @notice Get the balance of an account's Tokens
* @param _owner The address of the token holder
* @param _id ID of the Token
* @return The _owner's balance of the Token type requested
*/
function balanceOf(address _owner, uint256 _id) external view returns (uint256);
/**
* @notice Get the balance of multiple account/token pairs
* @param _owners The addresses of the token holders
* @param _ids ID of the Tokens
* @return The _owner's balance of the Token types requested (i.e. balance for each (owner, id) pair)
*/
function balanceOfBatch(address[] calldata _owners, uint256[] calldata _ids) external view returns (uint256[] memory);
/**
* @notice Enable or disable approval for a third party ("operator") to manage all of caller's tokens
* @dev MUST emit the ApprovalForAll event on success
* @param _operator Address to add to the set of authorized operators
* @param _approved True if the operator is approved, false to revoke approval
*/
function setApprovalForAll(address _operator, bool _approved) external;
/**
* @notice Queries the approval status of an operator for a given owner
* @param _owner The owner of the Tokens
* @param _operator Address of authorized operator
* @return True if the operator is approved, false if not
*/
function isApprovedForAll(address _owner, address _operator) external view returns (bool isOperator);
}
// File: node_modules\multi-token-standard\contracts\utils\Address.sol
/**
* Copyright 2018 ZeroEx Intl.
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
* http://www.apache.org/licenses/LICENSE-2.0
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
pragma solidity ^0.5.12;
/**
* Utility library of inline functions on addresses
*/
library Address {
/**
* Returns whether the target address is a contract
* @dev This function will return false if invoked during the constructor of a contract,
* as the code is not actually created until after the constructor finishes.
* @param account address of the account to check
* @return whether the target address is a contract
*/
function isContract(address account) internal view returns (bool) {
bytes32 codehash;
bytes32 accountHash = 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470;
// XXX Currently there is no better way to check if there is a contract in an address
// than to check the size of the code at that address.
// See https://ethereum.stackexchange.com/a/14016/36603
// for more details about how this works.
// TODO Check this again before the Serenity release, because all addresses will be
// contracts then.
assembly { codehash := extcodehash(account) }
return (codehash != 0x0 && codehash != accountHash);
}
}
// File: multi-token-standard\contracts\tokens\ERC1155\ERC1155.sol
pragma solidity ^0.5.12;
// File: multi-token-standard\contracts\tokens\ERC1155\ERC1155Metadata.sol
pragma solidity ^0.5.12;
/**
* @notice Contract that handles metadata related methods.
* @dev Methods assume a deterministic generation of URI based on token IDs.
* Methods also assume that URI uses hex representation of token IDs.
*/
contract ERC1155Metadata {
// URI's default URI prefix
string internal baseMetadataURI;
event URI(string _uri, uint256 indexed _id);
/***********************************|
| Metadata Public Function s |
|__________________________________*/
/**
* @notice A distinct Uniform Resource Identifier (URI) for a given token.
* @dev URIs are defined in RFC 3986.
* URIs are assumed to be deterministically generated based on token ID
* Token IDs are assumed to be represented in their hex format in URIs
* @return URI string
*/
function uri(uint256 _id) public view returns (string memory) {
return string(abi.encodePacked(baseMetadataURI, _uint2str(_id), ".json"));
}
/***********************************|
| Metadata Internal Functions |
|__________________________________*/
/**
* @notice Will emit default URI log event for corresponding token _id
* @param _tokenIDs Array of IDs of tokens to log default URI
*/
function _logURIs(uint256[] memory _tokenIDs) internal {
string memory baseURL = baseMetadataURI;
string memory tokenURI;
for (uint256 i = 0; i < _tokenIDs.length; i++) {
tokenURI = string(abi.encodePacked(baseURL, _uint2str(_tokenIDs[i]), ".json"));
emit URI(tokenURI, _tokenIDs[i]);
}
}
/**
* @notice Will emit a specific URI log event for corresponding token
* @param _tokenIDs IDs of the token corresponding to the _uris logged
* @param _URIs The URIs of the specified _tokenIDs
*/
function _logURIs(uint256[] memory _tokenIDs, string[] memory _URIs) internal {
require(_tokenIDs.length == _URIs.length, "ERC1155Metadata#_logURIs: INVALID_ARRAYS_LENGTH");
for (uint256 i = 0; i < _tokenIDs.length; i++) {
emit URI(_URIs[i], _tokenIDs[i]);
}
}
/**
* @notice Will update the base URL of token's URI
* @param _newBaseMetadataURI New base URL of token's URI
*/
function _setBaseMetadataURI(string memory _newBaseMetadataURI) internal {
baseMetadataURI = _newBaseMetadataURI;
}
/***********************************|
| Utility Internal Functions |
|__________________________________*/
/**
* @notice Convert uint256 to string
* @param _i Unsigned integer to convert to string
*/
function _uint2str(uint256 _i) internal pure returns (string memory _uintAsString) {
if (_i == 0) {
return "0";
}
uint256 j = _i;
uint256 ii = _i;
uint256 len;
// Get number of bytes
while (j != 0) {
len++;
j /= 10;
}
bytes memory bstr = new bytes(len);
uint256 k = len - 1;
// Get each individual ASCII
while (ii != 0) {
bstr[k--] = byte(uint8(48 + ii % 10));
ii /= 10;
}
// Convert to string
return string(bstr);
}
}
// File: node_modules\multi-token-standard\contracts\tokens\ERC1155\ERC1155.sol
pragma solidity ^0.5.12;
/**
* @dev Implementation of Multi-Token Standard contract
*/
contract ERC1155 is IERC165 {
using SafeMath for uint256;
using Address for address;
/***********************************|
| Variables and Events |
|__________________________________*/
// onReceive function signatures
bytes4 constant internal ERC1155_RECEIVED_VALUE = 0xf23a6e61;
bytes4 constant internal ERC1155_BATCH_RECEIVED_VALUE = 0xbc197c81;
// Objects balances
mapping (address => mapping(uint256 => uint256)) internal balances;
// Operator Functions
mapping (address => mapping(address => bool)) internal operators;
// Events
event TransferSingle(address indexed _operator, address indexed _from, address indexed _to, uint256 _id, uint256 _amount);
event TransferBatch(address indexed _operator, address indexed _from, address indexed _to, uint256[] _ids, uint256[] _amounts);
event ApprovalForAll(address indexed _owner, address indexed _operator, bool _approved);
event URI(string _uri, uint256 indexed _id);
/***********************************|
| Public Transfer Functions |
|__________________________________*/
/**
* @notice Transfers amount amount of an _id from the _from address to the _to address specified
* @param _from Source address
* @param _to Target address
* @param _id ID of the token type
* @param _amount Transfered amount
* @param _data Additional data with no specified format, sent in call to `_to`
*/
function safeTransferFrom(address _from, address _to, uint256 _id, uint256 _amount, bytes memory _data)
public
{
require((msg.sender == _from) || isApprovedForAll(_from, msg.sender), "ERC1155#safeTransferFrom: INVALID_OPERATOR");
require(_to != address(0),"ERC1155#safeTransferFrom: INVALID_RECIPIENT");
// require(_amount >= balances[_from][_id]) is not necessary since checked with safemath operations
_safeTransferFrom(_from, _to, _id, _amount);
_callonERC1155Received(_from, _to, _id, _amount, _data);
}
/**
* @notice Send multiple types of Tokens from the _from address to the _to address (with safety call)
* @param _from Source addresses
* @param _to Target addresses
* @param _ids IDs of each token type
* @param _amounts Transfer amounts per token type
* @param _data Additional data with no specified format, sent in call to `_to`
*/
function safeBatchTransferFrom(address _from, address _to, uint256[] memory _ids, uint256[] memory _amounts, bytes memory _data)
public
{
// Requirements
require((msg.sender == _from) || isApprovedForAll(_from, msg.sender), "ERC1155#safeBatchTransferFrom: INVALID_OPERATOR");
require(_to != address(0), "ERC1155#safeBatchTransferFrom: INVALID_RECIPIENT");
_safeBatchTransferFrom(_from, _to, _ids, _amounts);
_callonERC1155BatchReceived(_from, _to, _ids, _amounts, _data);
}
/***********************************|
| Internal Transfer Functions |
|__________________________________*/
/**
* @notice Transfers amount amount of an _id from the _from address to the _to address specified
* @param _from Source address
* @param _to Target address
* @param _id ID of the token type
* @param _amount Transfered amount
*/
function _safeTransferFrom(address _from, address _to, uint256 _id, uint256 _amount)
internal
{
// Update balances
balances[_from][_id] = balances[_from][_id].sub(_amount); // Subtract amount
balances[_to][_id] = balances[_to][_id].add(_amount); // Add amount
// Emit event
emit TransferSingle(msg.sender, _from, _to, _id, _amount);
}
/**
* @notice Verifies if receiver is contract and if so, calls (_to).onERC1155Received(...)
*/
function _callonERC1155Received(address _from, address _to, uint256 _id, uint256 _amount, bytes memory _data)
internal
{
// Check if recipient is contract
if (_to.isContract()) {
bytes4 retval = IERC1155TokenReceiver(_to).onERC1155Received(msg.sender, _from, _id, _amount, _data);
require(retval == ERC1155_RECEIVED_VALUE, "ERC1155#_callonERC1155Received: INVALID_ON_RECEIVE_MESSAGE");
}
}
/**
* @notice Send multiple types of Tokens from the _from address to the _to address (with safety call)
* @param _from Source addresses
* @param _to Target addresses
* @param _ids IDs of each token type
* @param _amounts Transfer amounts per token type
*/
function _safeBatchTransferFrom(address _from, address _to, uint256[] memory _ids, uint256[] memory _amounts)
internal
{
require(_ids.length == _amounts.length, "ERC1155#_safeBatchTransferFrom: INVALID_ARRAYS_LENGTH");
// Number of transfer to execute
uint256 nTransfer = _ids.length;
// Executing all transfers
for (uint256 i = 0; i < nTransfer; i++) {
// Update storage balance of previous bin
balances[_from][_ids[i]] = balances[_from][_ids[i]].sub(_amounts[i]);
balances[_to][_ids[i]] = balances[_to][_ids[i]].add(_amounts[i]);
}
// Emit event
emit TransferBatch(msg.sender, _from, _to, _ids, _amounts);
}
/**
* @notice Verifies if receiver is contract and if so, calls (_to).onERC1155BatchReceived(...)
*/
function _callonERC1155BatchReceived(address _from, address _to, uint256[] memory _ids, uint256[] memory _amounts, bytes memory _data)
internal
{
// Pass data if recipient is contract
if (_to.isContract()) {
bytes4 retval = IERC1155TokenReceiver(_to).onERC1155BatchReceived(msg.sender, _from, _ids, _amounts, _data);
require(retval == ERC1155_BATCH_RECEIVED_VALUE, "ERC1155#_callonERC1155BatchReceived: INVALID_ON_RECEIVE_MESSAGE");
}
}
/***********************************|
| Operator Functions |
|__________________________________*/
/**
* @notice Enable or disable approval for a third party ("operator") to manage all of caller's tokens
* @param _operator Address to add to the set of authorized operators
* @param _approved True if the operator is approved, false to revoke approval
*/
function setApprovalForAll(address _operator, bool _approved)
external
{
// Update operator status
operators[msg.sender][_operator] = _approved;
emit ApprovalForAll(msg.sender, _operator, _approved);
}
/**
* @notice Queries the approval status of an operator for a given owner
* @param _owner The owner of the Tokens
* @param _operator Address of authorized operator
* @return True if the operator is approved, false if not
*/
function isApprovedForAll(address _owner, address _operator)
public view returns (bool isOperator)
{
return operators[_owner][_operator];
}
/***********************************|
| Balance Functions |
|__________________________________*/
/**
* @notice Get the balance of an account's Tokens
* @param _owner The address of the token holder
* @param _id ID of the Token
* @return The _owner's balance of the Token type requested
*/
function balanceOf(address _owner, uint256 _id)
public view returns (uint256)
{
return balances[_owner][_id];
}
/**
* @notice Get the balance of multiple account/token pairs
* @param _owners The addresses of the token holders
* @param _ids ID of the Tokens
* @return The _owner's balance of the Token types requested (i.e. balance for each (owner, id) pair)
*/
function balanceOfBatch(address[] memory _owners, uint256[] memory _ids)
public view returns (uint256[] memory)
{
require(_owners.length == _ids.length, "ERC1155#balanceOfBatch: INVALID_ARRAY_LENGTH");
// Variables
uint256[] memory batchBalances = new uint256[](_owners.length);
// Iterate over each owner and token ID
for (uint256 i = 0; i < _owners.length; i++) {
batchBalances[i] = balances[_owners[i]][_ids[i]];
}
return batchBalances;
}
/***********************************|
| ERC165 Functions |
|__________________________________*/
/**
* INTERFACE_SIGNATURE_ERC165 = bytes4(keccak256("supportsInterface(bytes4)"));
*/
bytes4 constant private INTERFACE_SIGNATURE_ERC165 = 0x01ffc9a7;
/**
* INTERFACE_SIGNATURE_ERC1155 =
* bytes4(keccak256("safeTransferFrom(address,address,uint256,uint256,bytes)")) ^
* bytes4(keccak256("safeBatchTransferFrom(address,address,uint256[],uint256[],bytes)")) ^
* bytes4(keccak256("balanceOf(address,uint256)")) ^
* bytes4(keccak256("balanceOfBatch(address[],uint256[])")) ^
* bytes4(keccak256("setApprovalForAll(address,bool)")) ^
* bytes4(keccak256("isApprovedForAll(address,address)"));
*/
bytes4 constant private INTERFACE_SIGNATURE_ERC1155 = 0xd9b67a26;
/**
* @notice Query if a contract implements an interface
* @param _interfaceID The interface identifier, as specified in ERC-165
* @return `true` if the contract implements `_interfaceID` and
*/
function supportsInterface(bytes4 _interfaceID) external view returns (bool) {
if (_interfaceID == INTERFACE_SIGNATURE_ERC165 ||
_interfaceID == INTERFACE_SIGNATURE_ERC1155) {
return true;
}
return false;
}
}
// File: multi-token-standard\contracts\tokens\ERC1155\ERC1155MintBurn.sol
pragma solidity ^0.5.12;
/**
* @dev Multi-Fungible Tokens with minting and burning methods. These methods assume
* a parent contract to be executed as they are `internal` functions
*/
contract ERC1155MintBurn is ERC1155 {
/****************************************|
| Minting Functions |
|_______________________________________*/
/**
* @notice Mint _amount of tokens of a given id
* @param _to The address to mint tokens to
* @param _id Token id to mint
* @param _amount The amount to be minted
* @param _data Data to pass if receiver is contract
*/
function _mint(address _to, uint256 _id, uint256 _amount, bytes memory _data)
internal
{
// Add _amount
balances[_to][_id] = balances[_to][_id].add(_amount);
// Emit event
emit TransferSingle(msg.sender, address(0x0), _to, _id, _amount);
// Calling onReceive method if recipient is contract
_callonERC1155Received(address(0x0), _to, _id, _amount, _data);
}
/**
* @notice Mint tokens for each ids in _ids
* @param _to The address to mint tokens to
* @param _ids Array of ids to mint
* @param _amounts Array of amount of tokens to mint per id
* @param _data Data to pass if receiver is contract
*/
function _batchMint(address _to, uint256[] memory _ids, uint256[] memory _amounts, bytes memory _data)
internal
{
require(_ids.length == _amounts.length, "ERC1155MintBurn#batchMint: INVALID_ARRAYS_LENGTH");
// Number of mints to execute
uint256 nMint = _ids.length;
// Executing all minting
for (uint256 i = 0; i < nMint; i++) {
// Update storage balance
balances[_to][_ids[i]] = balances[_to][_ids[i]].add(_amounts[i]);
}
// Emit batch mint event
emit TransferBatch(msg.sender, address(0x0), _to, _ids, _amounts);
// Calling onReceive method if recipient is contract
_callonERC1155BatchReceived(address(0x0), _to, _ids, _amounts, _data);
}
/****************************************|
| Burning Functions |
|_______________________________________*/
/**
* @notice Burn _amount of tokens of a given token id
* @param _from The address to burn tokens from
* @param _id Token id to burn
* @param _amount The amount to be burned
*/
function _burn(address _from, uint256 _id, uint256 _amount)
internal
{
//Substract _amount
balances[_from][_id] = balances[_from][_id].sub(_amount);
// Emit event
emit TransferSingle(msg.sender, _from, address(0x0), _id, _amount);
}
/**
* @notice Burn tokens of given token id for each (_ids[i], _amounts[i]) pair
* @param _from The address to burn tokens from
* @param _ids Array of token ids to burn
* @param _amounts Array of the amount to be burned
*/
function _batchBurn(address _from, uint256[] memory _ids, uint256[] memory _amounts)
internal
{
require(_ids.length == _amounts.length, "ERC1155MintBurn#batchBurn: INVALID_ARRAYS_LENGTH");
// Number of mints to execute
uint256 nBurn = _ids.length;
// Executing all minting
for (uint256 i = 0; i < nBurn; i++) {
// Update storage balance
balances[_from][_ids[i]] = balances[_from][_ids[i]].sub(_amounts[i]);
}
// Emit batch mint event
emit TransferBatch(msg.sender, _from, address(0x0), _ids, _amounts);
}
}
// File: contracts\Strings.sol
pragma solidity ^0.5.12;
library Strings {
// via https://github.com/oraclize/ethereum-api/blob/master/oraclizeAPI_0.5.sol
function strConcat(string memory _a, string memory _b, string memory _c, string memory _d, string memory _e) internal pure returns (string memory) {
bytes memory _ba = bytes(_a);
bytes memory _bb = bytes(_b);
bytes memory _bc = bytes(_c);
bytes memory _bd = bytes(_d);
bytes memory _be = bytes(_e);
string memory abcde = new string(_ba.length + _bb.length + _bc.length + _bd.length + _be.length);
bytes memory babcde = bytes(abcde);
uint k = 0;
for (uint i = 0; i < _ba.length; i++) babcde[k++] = _ba[i];
for (uint i = 0; i < _bb.length; i++) babcde[k++] = _bb[i];
for (uint i = 0; i < _bc.length; i++) babcde[k++] = _bc[i];
for (uint i = 0; i < _bd.length; i++) babcde[k++] = _bd[i];
for (uint i = 0; i < _be.length; i++) babcde[k++] = _be[i];
return string(babcde);
}
function strConcat(string memory _a, string memory _b, string memory _c, string memory _d) internal pure returns (string memory) {
return strConcat(_a, _b, _c, _d, "");
}
function strConcat(string memory _a, string memory _b, string memory _c) internal pure returns (string memory) {
return strConcat(_a, _b, _c, "", "");
}
function strConcat(string memory _a, string memory _b) internal pure returns (string memory) {
return strConcat(_a, _b, "", "", "");
}
function uint2str(uint _i) internal pure returns (string memory _uintAsString) {
if (_i == 0) {
return "0";
}
uint j = _i;
uint len;
while (j != 0) {
len++;
j /= 10;
}
bytes memory bstr = new bytes(len);
uint k = len - 1;
while (_i != 0) {
bstr[k--] = byte(uint8(48 + _i % 10));
_i /= 10;
}
return string(bstr);
}
}
// File: contracts\ERC1155Tradable.sol
pragma solidity ^0.5.12;
contract OwnableDelegateProxy { }
contract ProxyRegistry {
mapping(address => OwnableDelegateProxy) public proxies;
}
/**
* @title ERC1155Tradable
* ERC1155Tradable - ERC1155 contract that whitelists an operator address, has create and mint functionality, and supports useful standards from OpenZeppelin,
like _exists(), name(), symbol(), and totalSupply()
*/
contract ERC1155Tradable is ERC1155, ERC1155MintBurn, ERC1155Metadata, Ownable {
using Strings for string;
//address proxyRegistryAddress;
uint256 private _currentTokenID = 0;
//uint256 private _maxTokenPerUser = 1000;
//uint256 private _maxTokenPerMint = 10;
uint256 private totalTokenAssets = 10000;
uint256 private totalReserve = 388;
uint256 private presales1MaxToken = 500;
uint256 private presales2MaxToken = 2888;
uint256 private sold = 0;
uint256 private reservedMinted = 0;
uint256 private presales1Minted = 0;
uint256 private presales2Minted = 0;
uint256 private preSalesPrice1 = 0.15 ether;
uint256 private preSalesPrice2 = 0.18 ether;
uint256 public publicSalesPrice = 0.28 ether;
address private signerAddress = 0x5704AB048DaFdD4b3793BDe9F2E5ddf657588B18;
uint16 public salesStage = 3; //1-presales1 , 2-presales2 , 3-public
address payable public companyWallet = 0xD7EB092E721B23992185347256ca889d938096c2;
mapping(uint256 => uint256) private _presalesPrice;
mapping(address => uint256) public presales1minted; // To check how many tokens an address has minted during presales
mapping(address => uint256) public presales2minted; // To check how many tokens an address has minted during presales
mapping(address => uint256) public minted; // To check how many tokens an address has minted
mapping (uint256 => address) public creators;
mapping (uint256 => uint256) public tokenSupply;
// Contract name
string public name;
// Contract symbol
string public symbol;
/**
* @dev Require msg.sender to be the creator of the token id
*/
modifier creatorOnly(uint256 _id) {
require(creators[_id] == msg.sender, "ERC1155Tradable#creatorOnly: ONLY_CREATOR_ALLOWED");
_;
}
/**
* @dev Require msg.sender to own more than 0 of the token id
*/
modifier ownersOnly(uint256 _id) {
require(balances[msg.sender][_id] > 0, "ERC1155Tradable#ownersOnly: ONLY_OWNERS_ALLOWED");
_;
}
constructor(
string memory _name,
string memory _symbol
//address _proxyRegistryAddress
) public {
name = _name;
symbol = _symbol;
//proxyRegistryAddress = _proxyRegistryAddress;
}
function uri(
uint256 _id
) public view returns (string memory) {
require(_exists(_id), "ERC721Tradable#uri: NONEXISTENT_TOKEN");
return Strings.strConcat(
baseMetadataURI,
Strings.uint2str(_id)
);
}
/**
* @dev Returns the total quantity for a token ID
* @param _id uint256 ID of the token to query
* @return amount of token in existence
*/
function totalSupply(
uint256 _id
) public view returns (uint256) {
return tokenSupply[_id];
}
/**
* @dev Will update the base URL of token's URI
* @param _newBaseMetadataURI New base URL of token's URI
*/
function setBaseMetadataURI(
string memory _newBaseMetadataURI
) public onlyOwner {
_setBaseMetadataURI(_newBaseMetadataURI);
}
/**
* @dev Creates a new token type and assigns _initialSupply to an address
* NOTE: remove onlyOwner if you want third parties to create new tokens on your contract (which may change your IDs)
* @param _initialOwner address of the first owner of the token
* @param _initialSupply amount to supply the first owner
* @param _uri Optional URI for this token type
* @param _data Data to pass if receiver is contract
* @return The newly created token ID
*/
function reserve(
address _initialOwner,
uint256 _initialSupply,
string calldata _uri,
bytes calldata _data
) external onlyOwner returns (uint256) {
require(reservedMinted + _initialSupply <= totalReserve, "Reserve Empty");
sold += _initialSupply;
for (uint256 i = 0; i < _initialSupply; i++) {
reservedMinted++;
uint256 _id = reservedMinted;
if (bytes(_uri).length > 0) {
emit URI(_uri, _id);
}
creators[_id] = msg.sender;
_mint(_initialOwner, _id, 1, _data);
tokenSupply[_id] = 1;
}
return 0;
}
function toBytes(address a) public pure returns (bytes memory b){
assembly {
let m := mload(0x40)
a := and(a, 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF)
mstore(add(m, 20), xor(0x140000000000000000000000000000000000000000, a))
mstore(0x40, add(m, 52))
b := m
}
}
function addressToString(address _addr) internal pure returns(string memory) {
bytes32 value = bytes32(uint256(_addr));
bytes memory alphabet = "0123456789abcdef";
bytes memory str = new bytes(42);
str[0] = "0";
str[1] = "x";
for (uint i = 0; i < 20; i++) {
str[2+i*2] = alphabet[uint(uint8(value[i + 12] >> 4))];
str[3+i*2] = alphabet[uint(uint8(value[i + 12] & 0x0f))];
}
return string(str);
}
function toAsciiString(address x) internal pure returns (string memory) {
bytes memory s = new bytes(40);
for (uint i = 0; i < 20; i++) {
bytes1 b = bytes1(uint8(uint(uint160(x)) / (2**(8*(19 - i)))));
bytes1 hi = bytes1(uint8(b) / 16);
bytes1 lo = bytes1(uint8(b) - 16 * uint8(hi));
s[2*i] = char(hi);
s[2*i+1] = char(lo);
}
return string(s);
}
function char(
bytes1 b
) internal pure returns (bytes1 c) {
if (uint8(b) < 10) return bytes1(uint8(b) + 0x30);
else return bytes1(uint8(b) + 0x57);
}
function bytes32ToString(bytes32 _bytes32) public pure returns (string memory) {
uint8 i = 0;
bytes memory bytesArray = new bytes(64);
for (i = 0; i < bytesArray.length; i++) {
uint8 _f = uint8(_bytes32[i/2] & 0x0f);
uint8 _l = uint8(_bytes32[i/2] >> 4);
bytesArray[i] = toByte(_f);
i = i + 1;
bytesArray[i] = toByte(_l);
}
return string(bytesArray);
}
function stringToBytes32(string memory source) public pure returns (bytes32 result) {
bytes memory tempEmptyStringTest = bytes(source);
if (tempEmptyStringTest.length == 0) {
return 0x0;
}
assembly {
result := mload(add(source, 32))
}
}
function splitSignature(bytes memory sig)
public
pure
returns (uint8, bytes32, bytes32)
{
require(sig.length == 65);
bytes32 r;
bytes32 s;
uint8 v;
assembly {
// first 32 bytes, after the length prefix
r := mload(add(sig, 32))
// second 32 bytes
s := mload(add(sig, 64))
// final byte (first byte of the next 32 bytes)
v := byte(0, mload(add(sig, 96)))
}
return (v, r, s);
}
function recoverSigner(bytes32 message, bytes memory sig)
public
pure
returns (address)
{
uint8 v;
bytes32 r;
bytes32 s;
(v, r, s) = splitSignature(sig);
return ecrecover(message, v, r, s);
}
function isValidData(string memory _word, bytes memory sig) public view returns(bool){
bytes32 message = keccak256(abi.encodePacked(_word));
return (recoverSigner(message, sig) == signerAddress);
}
function toByte(uint8 _uint8) public pure returns (byte) {
if(_uint8 < 10) {
return byte(_uint8 + 48);
} else {
return byte(_uint8 + 87);
}
}
function withdraw() public onlyOwner {
uint256 balance = address(this).balance;
companyWallet.transfer(balance);
}
function presales(
address _initialOwner,
uint256 _initialSupply,
bytes calldata _sig,
bytes calldata _data
) external payable returns (uint256) {
require(salesStage == 1 || salesStage == 2, "Presales is closed");
require(sold + _initialSupply <= totalTokenAssets, "Max Token Minted");
require(isValidData(addressToString(msg.sender), _sig), addressToString(msg.sender));
if(salesStage == 1){
require(presales1Minted + _initialSupply <= presales1MaxToken, "Max Token Minted");
require(_initialSupply * preSalesPrice1 == msg.value , "Invalid Fund");
}else if(salesStage == 2){
require(presales2Minted + _initialSupply <= presales2MaxToken, "Max Token Minted");
require(_initialSupply * preSalesPrice2 == msg.value , "Invalid Fund");
}
sold += _initialSupply;
if(salesStage == 1){
presales1minted[_initialOwner] += _initialSupply;
presales1Minted += _initialSupply;
}else if(salesStage == 2){
presales2minted[_initialOwner] += _initialSupply;
presales2Minted += _initialSupply;
}
minted[_initialOwner] += _initialSupply;
for (uint256 i = 0; i < _initialSupply; i++) {
uint256 _id = _getNextTokenID() + totalReserve;
_incrementTokenTypeId();
creators[_id] = msg.sender;
_mint(_initialOwner, _id, 1, _data);
tokenSupply[_id] = 1;
}
return 0;
}
function publicsales(
address _initialOwner,
uint256 _initialSupply,
string calldata _uri,
bytes calldata _data
) external payable returns (uint256) {
require(salesStage == 3 , "Public Sales Is Closed");
require(_initialSupply * publicSalesPrice == msg.value , "Invalid Fund");
require(sold + _initialSupply <= totalTokenAssets, "Max Token Minted");
sold += _initialSupply;
minted[_initialOwner] += _initialSupply;
for (uint256 i = 0; i < _initialSupply; i++) {
uint256 _id = _getNextTokenID() + totalReserve;
_incrementTokenTypeId();
if (bytes(_uri).length > 0) {
emit URI(_uri, _id);
}
creators[_id] = msg.sender;
_mint(_initialOwner, _id, 1, _data);
tokenSupply[_id] = 1;
}
return 0;
}
function setSalesStage(
uint16 stage
) public onlyOwner {
salesStage = stage;
}
function setPublicSalesPrice(
uint256 price
) public onlyOwner {
publicSalesPrice = price;
}
function setCompanyWallet(
address payable newWallet
) public onlyOwner {
companyWallet = newWallet;
}
function ownerMint(
address _initialOwner,
uint256 _initialSupply,
string calldata _uri,
bytes calldata _data
) external onlyOwner returns (uint256) {
require(sold + _initialSupply <= totalTokenAssets, "Max Token Minted");
sold += _initialSupply;
for (uint256 i = 0; i < _initialSupply; i++) {
uint256 _id = _getNextTokenID() + totalReserve;
_incrementTokenTypeId();
if (bytes(_uri).length > 0) {
emit URI(_uri, _id);
}
creators[_id] = msg.sender;
_mint(_initialOwner, _id, 1, _data);
tokenSupply[_id] = 1;
}
return 0;
}
function walletbalance(
) public view returns (uint256) {
return address(this).balance;
}
/**
* @dev Mint tokens for each id in _ids
* @param _to The address to mint tokens to
* @param _ids Array of ids to mint
* @param _quantities Array of amounts of tokens to mint per id
* @param _data Data to pass if receiver is contract
*/
function batchMint(
address _to,
uint256[] memory _ids,
uint256[] memory _quantities,
bytes memory _data
) public {
for (uint256 i = 0; i < _ids.length; i++) {
uint256 _id = _ids[i];
require(creators[_id] == msg.sender, "ERC1155Tradable#batchMint: ONLY_CREATOR_ALLOWED");
uint256 quantity = _quantities[i];
tokenSupply[_id] = tokenSupply[_id].add(quantity);
}
_batchMint(_to, _ids, _quantities, _data);
}
/**
* @dev Change the creator address for given tokens
* @param _to Address of the new creator
* @param _ids Array of Token IDs to change creator
*/
function setCreator(
address _to,
uint256[] memory _ids
) public {
require(_to != address(0), "ERC1155Tradable#setCreator: INVALID_ADDRESS.");
for (uint256 i = 0; i < _ids.length; i++) {
uint256 id = _ids[i];
_setCreator(_to, id);
}
}
/**
* Override isApprovedForAll to whitelist user's OpenSea proxy accounts to enable gas-free listings.
*/
//function isApprovedForAll(
// address _owner,
// address _operator
//) public view returns (bool isOperator) {
// // Whitelist OpenSea proxy contract for easy trading.
// ProxyRegistry proxyRegistry = ProxyRegistry(proxyRegistryAddress);
// if (address(proxyRegistry.proxies(_owner)) == _operator) {
// return true;
// }
// return ERC1155.isApprovedForAll(_owner, _operator);
//}
/**
* @dev Change the creator address for given token
* @param _to Address of the new creator
* @param _id Token IDs to change creator of
*/
function _setCreator(address _to, uint256 _id) internal creatorOnly(_id)
{
creators[_id] = _to;
}
/**
* @dev Returns whether the specified token exists by checking to see if it has a creator
* @param _id uint256 ID of the token to query the existence of
* @return bool whether the token exists
*/
function _exists(
uint256 _id
) internal view returns (bool) {
return creators[_id] != address(0);
}
/**
* @dev calculates the next token ID based on value of _currentTokenID
* @return uint256 for the next token ID
*/
function _getNextTokenID() private view returns (uint256) {
return _currentTokenID.add(1);
}
/**
* @dev increments the value of _currentTokenID
*/
function _incrementTokenTypeId() private {
_currentTokenID++;
}
}
// File: contracts\MyCollectible.sol
pragma solidity ^0.5.12;
/**
* @title MyCollectible
* MyCollectible - a contract for my semi-fungible tokens.
*/
contract Bearclaw is ERC1155Tradable {
constructor(string memory _name)
ERC1155Tradable(
_name,
_name
) public {
_setBaseMetadataURI("https://node.ploutus.io/nft/");
}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"string","name":"_name","type":"string"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_owner","type":"address"},{"indexed":true,"internalType":"address","name":"_operator","type":"address"},{"indexed":false,"internalType":"bool","name":"_approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_operator","type":"address"},{"indexed":true,"internalType":"address","name":"_from","type":"address"},{"indexed":true,"internalType":"address","name":"_to","type":"address"},{"indexed":false,"internalType":"uint256[]","name":"_ids","type":"uint256[]"},{"indexed":false,"internalType":"uint256[]","name":"_amounts","type":"uint256[]"}],"name":"TransferBatch","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_operator","type":"address"},{"indexed":true,"internalType":"address","name":"_from","type":"address"},{"indexed":true,"internalType":"address","name":"_to","type":"address"},{"indexed":false,"internalType":"uint256","name":"_id","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"TransferSingle","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"_uri","type":"string"},{"indexed":true,"internalType":"uint256","name":"_id","type":"uint256"}],"name":"URI","type":"event"},{"constant":true,"inputs":[{"internalType":"address","name":"_owner","type":"address"},{"internalType":"uint256","name":"_id","type":"uint256"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address[]","name":"_owners","type":"address[]"},{"internalType":"uint256[]","name":"_ids","type":"uint256[]"}],"name":"balanceOfBatch","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256[]","name":"_ids","type":"uint256[]"},{"internalType":"uint256[]","name":"_quantities","type":"uint256[]"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"batchMint","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"bytes32","name":"_bytes32","type":"bytes32"}],"name":"bytes32ToString","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"pure","type":"function"},{"constant":true,"inputs":[],"name":"companyWallet","outputs":[{"internalType":"address payable","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"creators","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"_owner","type":"address"},{"internalType":"address","name":"_operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"isOperator","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"isOwner","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"string","name":"_word","type":"string"},{"internalType":"bytes","name":"sig","type":"bytes"}],"name":"isValidData","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"minted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_initialOwner","type":"address"},{"internalType":"uint256","name":"_initialSupply","type":"uint256"},{"internalType":"string","name":"_uri","type":"string"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"ownerMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_initialOwner","type":"address"},{"internalType":"uint256","name":"_initialSupply","type":"uint256"},{"internalType":"bytes","name":"_sig","type":"bytes"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"presales","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":true,"stateMutability":"payable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"presales1minted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"presales2minted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"publicSalesPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_initialOwner","type":"address"},{"internalType":"uint256","name":"_initialSupply","type":"uint256"},{"internalType":"string","name":"_uri","type":"string"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"publicsales","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":true,"stateMutability":"payable","type":"function"},{"constant":true,"inputs":[{"internalType":"bytes32","name":"message","type":"bytes32"},{"internalType":"bytes","name":"sig","type":"bytes"}],"name":"recoverSigner","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"pure","type":"function"},{"constant":false,"inputs":[],"name":"renounceOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_initialOwner","type":"address"},{"internalType":"uint256","name":"_initialSupply","type":"uint256"},{"internalType":"string","name":"_uri","type":"string"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"reserve","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_from","type":"address"},{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256[]","name":"_ids","type":"uint256[]"},{"internalType":"uint256[]","name":"_amounts","type":"uint256[]"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeBatchTransferFrom","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_from","type":"address"},{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_id","type":"uint256"},{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"salesStage","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_operator","type":"address"},{"internalType":"bool","name":"_approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"string","name":"_newBaseMetadataURI","type":"string"}],"name":"setBaseMetadataURI","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address payable","name":"newWallet","type":"address"}],"name":"setCompanyWallet","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256[]","name":"_ids","type":"uint256[]"}],"name":"setCreator","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"price","type":"uint256"}],"name":"setPublicSalesPrice","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"uint16","name":"stage","type":"uint16"}],"name":"setSalesStage","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"bytes","name":"sig","type":"bytes"}],"name":"splitSignature","outputs":[{"internalType":"uint8","name":"","type":"uint8"},{"internalType":"bytes32","name":"","type":"bytes32"},{"internalType":"bytes32","name":"","type":"bytes32"}],"payable":false,"stateMutability":"pure","type":"function"},{"constant":true,"inputs":[{"internalType":"string","name":"source","type":"string"}],"name":"stringToBytes32","outputs":[{"internalType":"bytes32","name":"result","type":"bytes32"}],"payable":false,"stateMutability":"pure","type":"function"},{"constant":true,"inputs":[{"internalType":"bytes4","name":"_interfaceID","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"uint8","name":"_uint8","type":"uint8"}],"name":"toByte","outputs":[{"internalType":"bytes1","name":"","type":"bytes1"}],"payable":false,"stateMutability":"pure","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"a","type":"address"}],"name":"toBytes","outputs":[{"internalType":"bytes","name":"b","type":"bytes"}],"payable":false,"stateMutability":"pure","type":"function"},{"constant":true,"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"tokenSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"uint256","name":"_id","type":"uint256"}],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"uint256","name":"_id","type":"uint256"}],"name":"uri","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"walletbalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"withdraw","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"}]Contract Creation Code
608060405260006004556127106005556101846006556101f4600755610b4860085560006009556000600a556000600b556000600c55670214e8348c4f0000600d5567027f7d0bdb920000600e556703e2c284391c0000600f55735704ab048dafdd4b3793bde9f2e5ddf657588b18601060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506003601060146101000a81548161ffff021916908361ffff16021790555073d7eb092e721b23992185347256ca889d938096c2601160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055503480156200012e57600080fd5b506040516200636d3803806200636d833981810160405260208110156200015457600080fd5b81019080805160405193929190846401000000008211156200017557600080fd5b838201915060208201858111156200018c57600080fd5b8251866001820283011164010000000082111715620001aa57600080fd5b8083526020830192505050908051906020019080838360005b83811015620001e0578082015181840152602081019050620001c3565b50505050905090810190601f1680156200020e5780820380516001836020036101000a031916815260200191505b5060405250505080816000620002296200034960201b60201c565b905080600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3508160189080519060200190620002e09291906200036d565b508060199080519060200190620002f99291906200036d565b505050620003426040518060400160405280601c81526020017f68747470733a2f2f6e6f64652e706c6f757475732e696f2f6e66742f000000008152506200035160201b60201c565b506200041c565b600033905090565b8060029080519060200190620003699291906200036d565b5050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10620003b057805160ff1916838001178555620003e1565b82800160010185558215620003e1579182015b82811115620003e0578251825591602001919060010190620003c3565b5b509050620003f09190620003f4565b5090565b6200041991905b8082111562000415576000816000905550600101620003fb565b5090565b90565b615f41806200042c6000396000f3fe6080604052600436106102505760003560e01c80638da5cb5b11610139578063ad8066c8116100b6578063cd53d08e1161007a578063cd53d08e14611a20578063cfb5192814611a9b578063d2a6b51a14611b77578063e985e9c514611c5c578063f242432a14611ce5578063f2fde38b14611e0157610250565b8063ad8066c8146115ba578063adb41f75146115e5578063b48ab8b61461175c578063bcc7eae91461196c578063bd85b039146119d157610250565b806395d89b41116100fd57806395d89b411461123557806397aba7f9146112c5578063a22cb465146113d7578063a7bb580314611434578063a86b73f01461152457610250565b80638da5cb5b14610ed65780638ec2297614610f2d5780638f32d59b146110395780639201de55146110685780639242413f1461111c57610250565b80632eb2c2d6116101d2578063677edc9b11610196578063677edc9b14610b325780636b43974e14610c4b5780636b941a9b14610d57578063715018a614610dbc57806373538fb414610dd35780637e518ec814610e0e57610250565b80632eb2c2d6146106345780633ccfd60b1461086457806340259dad1461087b5780634e1273f4146108ba578063593b79fe14610a6857610250565b80630e89341c116102195780630e89341c146104245780631e7269c5146104d85780631ec32d151461053d5780632693ebf21461059457806328831187146105e357610250565b8062fdd58e1461025557806301ffc9a7146102c457806306fdde03146103365780630b9c8271146103c65780630cd1635d146103f1575b600080fd5b34801561026157600080fd5b506102ae6004803603604081101561027857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611e52565b6040518082815260200191505060405180910390f35b3480156102d057600080fd5b5061031c600480360360208110156102e757600080fd5b8101908080357bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19169060200190929190505050611eac565b604051808215151515815260200191505060405180910390f35b34801561034257600080fd5b5061034b611f5d565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561038b578082015181840152602081019050610370565b50505050905090810190601f1680156103b85780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156103d257600080fd5b506103db611ffb565b6040518082815260200191505060405180910390f35b3480156103fd57600080fd5b50610406612001565b604051808261ffff1661ffff16815260200191505060405180910390f35b34801561043057600080fd5b5061045d6004803603602081101561044757600080fd5b8101908080359060200190929190505050612015565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561049d578082015181840152602081019050610482565b50505050905090810190601f1680156104ca5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156104e457600080fd5b50610527600480360360208110156104fb57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612128565b6040518082815260200191505060405180910390f35b34801561054957600080fd5b50610552612140565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b3480156105a057600080fd5b506105cd600480360360208110156105b757600080fd5b8101908080359060200190929190505050612166565b6040518082815260200191505060405180910390f35b3480156105ef57600080fd5b506106326004803603602081101561060657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061217e565b005b34801561064057600080fd5b50610862600480360360a081101561065757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001906401000000008111156106b457600080fd5b8201836020820111156106c657600080fd5b803590602001918460208302840111640100000000831117156106e857600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f8201169050808301925050505050505091929192908035906020019064010000000081111561074857600080fd5b82018360208201111561075a57600080fd5b8035906020019184602083028401116401000000008311171561077c57600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f820116905080830192505050505050509192919290803590602001906401000000008111156107dc57600080fd5b8201836020820111156107ee57600080fd5b8035906020019184600183028401116401000000008311171561081057600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f82011690508083019250505050505050919291929050505061223c565b005b34801561087057600080fd5b50610879612377565b005b34801561088757600080fd5b506108b86004803603602081101561089e57600080fd5b81019080803561ffff169060200190929190505050612479565b005b3480156108c657600080fd5b50610a11600480360360408110156108dd57600080fd5b81019080803590602001906401000000008111156108fa57600080fd5b82018360208201111561090c57600080fd5b8035906020019184602083028401116401000000008311171561092e57600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f8201169050808301925050505050505091929192908035906020019064010000000081111561098e57600080fd5b8201836020820111156109a057600080fd5b803590602001918460208302840111640100000000831117156109c257600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f820116905080830192505050505050509192919290505050612513565b6040518080602001828103825283818151815260200191508051906020019060200280838360005b83811015610a54578082015181840152602081019050610a39565b505050509050019250505060405180910390f35b348015610a7457600080fd5b50610ab760048036036020811015610a8b57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612659565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610af7578082015181840152602081019050610adc565b50505050905090810190601f168015610b245780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b348015610b3e57600080fd5b50610c3560048036036080811015610b5557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919080359060200190640100000000811115610b9c57600080fd5b820183602082011115610bae57600080fd5b80359060200191846001830284011164010000000083111715610bd057600080fd5b909192939192939080359060200190640100000000811115610bf157600080fd5b820183602082011115610c0357600080fd5b80359060200191846001830284011164010000000083111715610c2557600080fd5b90919293919293905050506126a4565b6040518082815260200191505060405180910390f35b610d4160048036036080811015610c6157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919080359060200190640100000000811115610ca857600080fd5b820183602082011115610cba57600080fd5b80359060200191846001830284011164010000000083111715610cdc57600080fd5b909192939192939080359060200190640100000000811115610cfd57600080fd5b820183602082011115610d0f57600080fd5b80359060200191846001830284011164010000000083111715610d3157600080fd5b909192939192939050505061291d565b6040518082815260200191505060405180910390f35b348015610d6357600080fd5b50610da660048036036020811015610d7a57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612c6b565b6040518082815260200191505060405180910390f35b348015610dc857600080fd5b50610dd1612c83565b005b348015610ddf57600080fd5b50610e0c60048036036020811015610df657600080fd5b8101908080359060200190929190505050612dbe565b005b348015610e1a57600080fd5b50610ed460048036036020811015610e3157600080fd5b8101908080359060200190640100000000811115610e4e57600080fd5b820183602082011115610e6057600080fd5b80359060200191846001830284011164010000000083111715610e8257600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050509192919290505050612e42565b005b348015610ee257600080fd5b50610eeb612ec8565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b61102360048036036080811015610f4357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919080359060200190640100000000811115610f8a57600080fd5b820183602082011115610f9c57600080fd5b80359060200191846001830284011164010000000083111715610fbe57600080fd5b909192939192939080359060200190640100000000811115610fdf57600080fd5b820183602082011115610ff157600080fd5b8035906020019184600183028401116401000000008311171561101357600080fd5b9091929391929390505050612ef2565b6040518082815260200191505060405180910390f35b34801561104557600080fd5b5061104e6135a1565b604051808215151515815260200191505060405180910390f35b34801561107457600080fd5b506110a16004803603602081101561108b57600080fd5b8101908080359060200190929190505050613600565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156110e15780820151818401526020810190506110c6565b50505050905090810190601f16801561110e5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561112857600080fd5b5061121f6004803603608081101561113f57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291908035906020019064010000000081111561118657600080fd5b82018360208201111561119857600080fd5b803590602001918460018302840111640100000000831117156111ba57600080fd5b9091929391929390803590602001906401000000008111156111db57600080fd5b8201836020820111156111ed57600080fd5b8035906020019184600183028401116401000000008311171561120f57600080fd5b9091929391929390505050613777565b6040518082815260200191505060405180910390f35b34801561124157600080fd5b5061124a6139ef565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561128a57808201518184015260208101905061126f565b50505050905090810190601f1680156112b75780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156112d157600080fd5b50611395600480360360408110156112e857600080fd5b81019080803590602001909291908035906020019064010000000081111561130f57600080fd5b82018360208201111561132157600080fd5b8035906020019184600183028401116401000000008311171561134357600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050509192919290505050613a8d565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b3480156113e357600080fd5b50611432600480360360408110156113fa57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803515159060200190929190505050613b1a565b005b34801561144057600080fd5b506114fa6004803603602081101561145757600080fd5b810190808035906020019064010000000081111561147457600080fd5b82018360208201111561148657600080fd5b803590602001918460018302840111640100000000831117156114a857600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050509192919290505050613c1b565b604051808460ff1660ff168152602001838152602001828152602001935050505060405180910390f35b34801561153057600080fd5b506115606004803603602081101561154757600080fd5b81019080803560ff169060200190929190505050613c5e565b60405180827effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200191505060405180910390f35b3480156115c657600080fd5b506115cf613c89565b6040518082815260200191505060405180910390f35b3480156115f157600080fd5b506117426004803603604081101561160857600080fd5b810190808035906020019064010000000081111561162557600080fd5b82018360208201111561163757600080fd5b8035906020019184600183028401116401000000008311171561165957600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050509192919290803590602001906401000000008111156116bc57600080fd5b8201836020820111156116ce57600080fd5b803590602001918460018302840111640100000000831117156116f057600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050509192919290505050613ca8565b604051808215151515815260200191505060405180910390f35b34801561176857600080fd5b5061196a6004803603608081101561177f57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001906401000000008111156117bc57600080fd5b8201836020820111156117ce57600080fd5b803590602001918460208302840111640100000000831117156117f057600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f8201169050808301925050505050505091929192908035906020019064010000000081111561185057600080fd5b82018360208201111561186257600080fd5b8035906020019184602083028401116401000000008311171561188457600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f820116905080830192505050505050509192919290803590602001906401000000008111156118e457600080fd5b8201836020820111156118f657600080fd5b8035906020019184600183028401116401000000008311171561191857600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050509192919290505050613d82565b005b34801561197857600080fd5b506119bb6004803603602081101561198f57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050613ed7565b6040518082815260200191505060405180910390f35b3480156119dd57600080fd5b50611a0a600480360360208110156119f457600080fd5b8101908080359060200190929190505050613eef565b6040518082815260200191505060405180910390f35b348015611a2c57600080fd5b50611a5960048036036020811015611a4357600080fd5b8101908080359060200190929190505050613f0c565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b348015611aa757600080fd5b50611b6160048036036020811015611abe57600080fd5b8101908080359060200190640100000000811115611adb57600080fd5b820183602082011115611aed57600080fd5b80359060200191846001830284011164010000000083111715611b0f57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050509192919290505050613f3f565b6040518082815260200191505060405180910390f35b348015611b8357600080fd5b50611c5a60048036036040811015611b9a57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190640100000000811115611bd757600080fd5b820183602082011115611be957600080fd5b80359060200191846020830284011164010000000083111715611c0b57600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f820116905080830192505050505050509192919290505050613f6a565b005b348015611c6857600080fd5b50611ccb60048036036040811015611c7f57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050614034565b604051808215151515815260200191505060405180910390f35b348015611cf157600080fd5b50611dff600480360360a0811015611d0857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291908035906020019092919080359060200190640100000000811115611d7957600080fd5b820183602082011115611d8b57600080fd5b80359060200191846001830284011164010000000083111715611dad57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f8201169050808301925050505050505091929192905050506140c8565b005b348015611e0d57600080fd5b50611e5060048036036020811015611e2457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050614203565b005b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b60006301ffc9a760e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611f45575063d9b67a2660e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b15611f535760019050611f58565b600090505b919050565b60188054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015611ff35780601f10611fc857610100808354040283529160200191611ff3565b820191906000526020600020905b815481529060010190602001808311611fd657829003601f168201915b505050505081565b600f5481565b601060149054906101000a900461ffff1681565b606061202082614289565b612075576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526025815260200180615d876025913960400191505060405180910390fd5b61212160028054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561210e5780601f106120e35761010080835404028352916020019161210e565b820191906000526020600020905b8154815290600101906020018083116120f157829003601f168201915b505050505061211c846142f5565b614422565b9050919050565b60156020528060005260406000206000915090505481565b601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60176020528060005260406000206000915090505481565b6121866135a1565b6121f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80601160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b8473ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16148061227c575061227b8533614034565b5b6122d1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602f815260200180615dd8602f913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612357576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526030815260200180615d576030913960400191505060405180910390fd5b61236385858585614466565b61237085858585856147cb565b5050505050565b61237f6135a1565b6123f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b60003073ffffffffffffffffffffffffffffffffffffffff16319050601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015612475573d6000803e3d6000fd5b5050565b6124816135a1565b6124f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80601060146101000a81548161ffff021916908361ffff16021790555050565b6060815183511461256f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c815260200180615dac602c913960400191505060405180910390fd5b606083516040519080825280602002602001820160405280156125a15781602001602082028038833980820191505090505b50905060008090505b845181101561264e576000808683815181106125c257fe5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600085838151811061261257fe5b602002602001015181526020019081526020016000205482828151811061263557fe5b60200260200101818152505080806001019150506125aa565b508091505092915050565b606060405173ffffffffffffffffffffffffffffffffffffffff8316925082741400000000000000000000000000000000000000001860148201526034810160405280915050919050565b60006126ae6135a1565b612720576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b60065486600a5401111561279c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600d8152602001807f5265736572766520456d7074790000000000000000000000000000000000000081525060200191505060405180910390fd5b8560096000828254019250508190555060008090505b8681101561290e57600a600081548092919060010191905055506000600a549050600087879050111561284457807f6bb7ff708619ba0610cba295a58592e0451dee2622938c8755667688daf3529b888860405180806020018281038252848482818152602001925080828437600081840152601f19601f820116905080830192505050935050505060405180910390a25b336016600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506128e78982600188888080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f82011690508083019250505050505050614a86565b600160176000838152602001908152602001600020819055505080806001019150506127b2565b50600090509695505050505050565b60006003601060149054906101000a900461ffff1661ffff16146129a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260168152602001807f5075626c69632053616c657320497320436c6f7365640000000000000000000081525060200191505060405180910390fd5b34600f54870214612a22576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600c8152602001807f496e76616c69642046756e64000000000000000000000000000000000000000081525060200191505060405180910390fd5b60055486600954011115612a9e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f4d617820546f6b656e204d696e7465640000000000000000000000000000000081525060200191505060405180910390fd5b8560096000828254019250508190555085601560008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555060008090505b86811015612c5c576000600654612b16614bd4565b019050612b21614bf1565b6000878790501115612b9257807f6bb7ff708619ba0610cba295a58592e0451dee2622938c8755667688daf3529b888860405180806020018281038252848482818152602001925080828437600081840152601f19601f820116905080830192505050935050505060405180910390a25b336016600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550612c358982600188888080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f82011690508083019250505050505050614a86565b60016017600083815260200190815260200160002081905550508080600101915050612b01565b50600090509695505050505050565b60136020528060005260406000206000915090505481565b612c8b6135a1565b612cfd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b612dc66135a1565b612e38576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80600f8190555050565b612e4a6135a1565b612ebc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b612ec581614c05565b50565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60006001601060149054906101000a900461ffff1661ffff161480612f2b57506002601060149054906101000a900461ffff1661ffff16145b612f9d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260128152602001807f50726573616c657320697320636c6f736564000000000000000000000000000081525060200191505060405180910390fd5b60055486600954011115613019576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f4d617820546f6b656e204d696e7465640000000000000000000000000000000081525060200191505060405180910390fd5b61306f61302533614c1f565b86868080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f82011690508083019250505050505050613ca8565b61307833614c1f565b9061311e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b838110156130e35780820151818401526020810190506130c8565b50505050905090810190601f1680156131105780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b506001601060149054906101000a900461ffff1661ffff1614156132365760075486600b540111156131b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f4d617820546f6b656e204d696e7465640000000000000000000000000000000081525060200191505060405180910390fd5b34600d54870214613231576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600c8152602001807f496e76616c69642046756e64000000000000000000000000000000000000000081525060200191505060405180910390fd5b61334a565b6002601060149054906101000a900461ffff1661ffff1614156133495760085486600c540111156132cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f4d617820546f6b656e204d696e7465640000000000000000000000000000000081525060200191505060405180910390fd5b34600e54870214613348576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600c8152602001807f496e76616c69642046756e64000000000000000000000000000000000000000081525060200191505060405180910390fd5b5b5b856009600082825401925050819055506001601060149054906101000a900461ffff1661ffff1614156133d95785601360008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555085600b60008282540192505081905550613455565b6002601060149054906101000a900461ffff1661ffff1614156134545785601460008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555085600c600082825401925050819055505b5b85601560008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555060008090505b868110156135925760006006546134bd614bd4565b0190506134c8614bf1565b336016600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555061356b8982600188888080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f82011690508083019250505050505050614a86565b600160176000838152602001908152602001600020819055505080806001019150506134a8565b50600090509695505050505050565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166135e4614ea0565b73ffffffffffffffffffffffffffffffffffffffff1614905090565b606060008090506060604080519080825280601f01601f19166020018201604052801561363c5781602001600182028038833980820191505090505b509050600091505b80518260ff16101561376d576000600f60f81b8560028560ff168161366557fe5b0460ff166020811061367357fe5b1a60f81b1660f81c9050600060048660028660ff168161368f57fe5b0460ff166020811061369d57fe5b1a60f81b7effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916901c60f81c90506136d382613c5e565b838560ff16815181106136e257fe5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535060018401935061372081613c5e565b838560ff168151811061372f57fe5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535050508180600101925050613644565b8092505050919050565b60006137816135a1565b6137f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6005548660095401111561386f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f4d617820546f6b656e204d696e7465640000000000000000000000000000000081525060200191505060405180910390fd5b8560096000828254019250508190555060008090505b868110156139e057600060065461389a614bd4565b0190506138a5614bf1565b600087879050111561391657807f6bb7ff708619ba0610cba295a58592e0451dee2622938c8755667688daf3529b888860405180806020018281038252848482818152602001925080828437600081840152601f19601f820116905080830192505050935050505060405180910390a25b336016600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506139b98982600188888080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f82011690508083019250505050505050614a86565b60016017600083815260200190815260200160002081905550508080600101915050613885565b50600090509695505050505050565b60198054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015613a855780601f10613a5a57610100808354040283529160200191613a85565b820191906000526020600020905b815481529060010190602001808311613a6857829003601f168201915b505050505081565b600080600080613a9c85613c1b565b80935081945082955050505060018684848460405160008152602001604052604051808581526020018460ff1660ff1681526020018381526020018281526020019450505050506020604051602081039080840390855afa158015613b05573d6000803e3d6000fd5b50505060206040510351935050505092915050565b80600160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051808215151515815260200191505060405180910390a35050565b60008060006041845114613c2e57600080fd5b60008060006020870151925060408701519150606087015160001a90508083839550955095505050509193909250565b6000600a8260ff161015613c7a576030820160f81b9050613c84565b6057820160f81b90505b919050565b60003073ffffffffffffffffffffffffffffffffffffffff1631905090565b600080836040516020018082805190602001908083835b60208310613ce25780518252602082019150602081019050602083039250613cbf565b6001836020036101000a038019825116818451168082178552505050505050905001915050604051602081830303815290604052805190602001209050601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16613d628285613a8d565b73ffffffffffffffffffffffffffffffffffffffff161491505092915050565b60008090505b8351811015613ec4576000848281518110613d9f57fe5b602002602001015190503373ffffffffffffffffffffffffffffffffffffffff166016600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614613e60576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602f815260200180615ca3602f913960400191505060405180910390fd5b6000848381518110613e6e57fe5b60200260200101519050613e9e816017600085815260200190815260200160002054614ea890919063ffffffff16565b601760008481526020019081526020016000208190555050508080600101915050613d88565b50613ed184848484614f30565b50505050565b60146020528060005260406000206000915090505481565b600060176000838152602001908152602001600020549050919050565b60166020528060005260406000206000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60006060829050600081511415613f5c576000801b915050613f65565b60208301519150505b919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613ff0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c815260200180615eb0602c913960400191505060405180910390fd5b60008090505b815181101561402f57600082828151811061400d57fe5b6020026020010151905061402184826151b6565b508080600101915050613ff6565b505050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b8473ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16148061410857506141078533614034565b5b61415d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a815260200180615cf8602a913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156141e3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602b815260200180615c78602b913960400191505060405180910390fd5b6141ef858585856152c5565b6141fc85858585856154b9565b5050505050565b61420b6135a1565b61427d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b614286816156f2565b50565b60008073ffffffffffffffffffffffffffffffffffffffff166016600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b6060600082141561433d576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061441d565b600082905060005b60008214614367578080600101915050600a828161435f57fe5b049150614345565b6060816040519080825280601f01601f19166020018201604052801561439c5781602001600182028038833980820191505090505b50905060006001830390505b6000861461441557600a86816143ba57fe5b0660300160f81b828280600190039350815181106143d457fe5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a868161440d57fe5b0495506143a8565b819450505050505b919050565b606061445e8383604051806020016040528060008152506040518060200160405280600081525060405180602001604052806000815250615838565b905092915050565b80518251146144c0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526035815260200180615d226035913960400191505060405180910390fd5b60008251905060008090505b818110156146bd5761455c8382815181106144e357fe5b60200260200101516000808973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600087858151811061453757fe5b6020026020010151815260200190815260200160002054615afe90919063ffffffff16565b6000808873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008684815181106145a857fe5b602002602001015181526020019081526020016000208190555061464a8382815181106145d157fe5b60200260200101516000808873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600087858151811061462557fe5b6020026020010151815260200190815260200160002054614ea890919063ffffffff16565b6000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600086848151811061469657fe5b602002602001015181526020019081526020016000208190555080806001019150506144cc565b508373ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8686604051808060200180602001838103835285818151815260200191508051906020019060200280838360005b8381101561476d578082015181840152602081019050614752565b50505050905001838103825284818151815260200191508051906020019060200280838360005b838110156147af578082015181840152602081019050614794565b5050505090500194505050505060405180910390a45050505050565b6147ea8473ffffffffffffffffffffffffffffffffffffffff16615b87565b15614a7f5760008473ffffffffffffffffffffffffffffffffffffffff1663bc197c8133888787876040518663ffffffff1660e01b8152600401808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001806020018060200180602001848103845287818151815260200191508051906020019060200280838360005b838110156148d05780820151818401526020810190506148b5565b50505050905001848103835286818151815260200191508051906020019060200280838360005b838110156149125780820151818401526020810190506148f7565b50505050905001848103825285818151815260200191508051906020019080838360005b83811015614951578082015181840152602081019050614936565b50505050905090810190601f16801561497e5780820380516001836020036101000a031916815260200191505b5098505050505050505050602060405180830381600087803b1580156149a357600080fd5b505af11580156149b7573d6000803e3d6000fd5b505050506040513d60208110156149cd57600080fd5b8101908080519060200190929190505050905063bc197c8160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614614a7d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603f815260200180615e37603f913960400191505060405180910390fd5b505b5050505050565b614ae8826000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600086815260200190815260200160002054614ea890919063ffffffff16565b6000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000858152602001908152602001600020819055508373ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628686604051808381526020018281526020019250505060405180910390a4614bce6000858585856154b9565b50505050565b6000614bec6001600454614ea890919063ffffffff16565b905090565b600460008154809291906001019190505550565b8060029080519060200190614c1b929190615bd2565b5050565b606060008273ffffffffffffffffffffffffffffffffffffffff1660001b905060606040518060400160405280601081526020017f303132333435363738396162636465660000000000000000000000000000000081525090506060602a6040519080825280601f01601f191660200182016040528015614caf5781602001600182028038833980820191505090505b5090507f300000000000000000000000000000000000000000000000000000000000000081600081518110614ce057fe5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f780000000000000000000000000000000000000000000000000000000000000081600181518110614d3d57fe5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535060008090505b6014811015614e945782600485600c840160208110614d8d57fe5b1a60f81b7effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916901c60f81c60ff1681518110614dc557fe5b602001015160f81c60f81b826002830260020181518110614de257fe5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535082600f60f81b85600c840160208110614e2657fe5b1a60f81b1660f81c60ff1681518110614e3b57fe5b602001015160f81c60f81b826002830260030181518110614e5857fe5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053508080600101915050614d72565b50809350505050919050565b600033905090565b600080828401905083811015614f26576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260168152602001807f536166654d617468236164643a204f564552464c4f570000000000000000000081525060200191505060405180910390fd5b8091505092915050565b8151835114614f8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526030815260200180615e076030913960400191505060405180910390fd5b60008351905060008090505b8181101561509957615026848281518110614fad57fe5b60200260200101516000808973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600088858151811061500157fe5b6020026020010151815260200190815260200160002054614ea890919063ffffffff16565b6000808873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600087848151811061507257fe5b60200260200101518152602001908152602001600020819055508080600101915050614f96565b508473ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051808060200180602001838103835285818151815260200191508051906020019060200280838360005b8381101561514a57808201518184015260208101905061512f565b50505050905001838103825284818151815260200191508051906020019060200280838360005b8381101561518c578082015181840152602081019050615171565b5050505090500194505050505060405180910390a46151af6000868686866147cb565b5050505050565b803373ffffffffffffffffffffffffffffffffffffffff166016600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461526e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526031815260200180615edc6031913960400191505060405180910390fd5b826016600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550505050565b615327816000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600085815260200190815260200160002054615afe90919063ffffffff16565b6000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000848152602001908152602001600020819055506153dc816000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600085815260200190815260200160002054614ea890919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000848152602001908152602001600020819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628585604051808381526020018281526020019250505060405180910390a450505050565b6154d88473ffffffffffffffffffffffffffffffffffffffff16615b87565b156156eb5760008473ffffffffffffffffffffffffffffffffffffffff1663f23a6e6133888787876040518663ffffffff1660e01b8152600401808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200184815260200183815260200180602001828103825283818151815260200191508051906020019080838360005b838110156155bf5780820151818401526020810190506155a4565b50505050905090810190601f1680156155ec5780820380516001836020036101000a031916815260200191505b509650505050505050602060405180830381600087803b15801561560f57600080fd5b505af1158015615623573d6000803e3d6000fd5b505050506040513d602081101561563957600080fd5b8101908080519060200190929190505050905063f23a6e6160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916146156e9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603a815260200180615e76603a913960400191505060405180910390fd5b505b5050505050565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415615778576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526026815260200180615cd26026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6060808690506060869050606086905060608690506060869050606081518351855187518951010101016040519080825280601f01601f1916602001820160405280156158945781602001600182028038833980820191505090505b5090506060819050600080905060008090505b8851811015615915578881815181106158bc57fe5b602001015160f81c60f81b8383806001019450815181106158d957fe5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535080806001019150506158a7565b5060008090505b875181101561598a5787818151811061593157fe5b602001015160f81c60f81b83838060010194508151811061594e57fe5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350808060010191505061591c565b5060008090505b86518110156159ff578681815181106159a657fe5b602001015160f81c60f81b8383806001019450815181106159c357fe5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053508080600101915050615991565b5060008090505b8551811015615a7457858181518110615a1b57fe5b602001015160f81c60f81b838380600101945081518110615a3857fe5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053508080600101915050615a06565b5060008090505b8451811015615ae957848181518110615a9057fe5b602001015160f81c60f81b838380600101945081518110615aad57fe5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053508080600101915050615a7b565b50819850505050505050505095945050505050565b600082821115615b76576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260178152602001807f536166654d617468237375623a20554e444552464c4f5700000000000000000081525060200191505060405180910390fd5b600082840390508091505092915050565b60008060007fc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a47060001b9050833f91506000801b8214158015615bc95750808214155b92505050919050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10615c1357805160ff1916838001178555615c41565b82800160010185558215615c41579182015b82811115615c40578251825591602001919060010190615c25565b5b509050615c4e9190615c52565b5090565b615c7491905b80821115615c70576000816000905550600101615c58565b5090565b9056fe4552433131353523736166655472616e7366657246726f6d3a20494e56414c49445f524543495049454e54455243313135355472616461626c652362617463684d696e743a204f4e4c595f43524541544f525f414c4c4f5745444f776e61626c653a206e6577206f776e657220697320746865207a65726f20616464726573734552433131353523736166655472616e7366657246726f6d3a20494e56414c49445f4f50455241544f5245524331313535235f7361666542617463685472616e7366657246726f6d3a20494e56414c49445f4152524159535f4c454e47544845524331313535237361666542617463685472616e7366657246726f6d3a20494e56414c49445f524543495049454e544552433732315472616461626c65237572693a204e4f4e4558495354454e545f544f4b454e455243313135352362616c616e63654f6642617463683a20494e56414c49445f41525241595f4c454e47544845524331313535237361666542617463685472616e7366657246726f6d3a20494e56414c49445f4f50455241544f52455243313135354d696e744275726e2362617463684d696e743a20494e56414c49445f4152524159535f4c454e47544845524331313535235f63616c6c6f6e45524331313535426174636852656365697665643a20494e56414c49445f4f4e5f524543454956455f4d45535341474545524331313535235f63616c6c6f6e4552433131353552656365697665643a20494e56414c49445f4f4e5f524543454956455f4d455353414745455243313135355472616461626c652373657443726561746f723a20494e56414c49445f414444524553532e455243313135355472616461626c652363726561746f724f6e6c793a204f4e4c595f43524541544f525f414c4c4f574544a265627a7a723158204574d7900ec84afd32c87b7de7fc7a3e7d5f2c9d409794c7d242a62fcd5ac25564736f6c634300050c00320000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000842656172636c6177000000000000000000000000000000000000000000000000
Deployed Bytecode
0x6080604052600436106102505760003560e01c80638da5cb5b11610139578063ad8066c8116100b6578063cd53d08e1161007a578063cd53d08e14611a20578063cfb5192814611a9b578063d2a6b51a14611b77578063e985e9c514611c5c578063f242432a14611ce5578063f2fde38b14611e0157610250565b8063ad8066c8146115ba578063adb41f75146115e5578063b48ab8b61461175c578063bcc7eae91461196c578063bd85b039146119d157610250565b806395d89b41116100fd57806395d89b411461123557806397aba7f9146112c5578063a22cb465146113d7578063a7bb580314611434578063a86b73f01461152457610250565b80638da5cb5b14610ed65780638ec2297614610f2d5780638f32d59b146110395780639201de55146110685780639242413f1461111c57610250565b80632eb2c2d6116101d2578063677edc9b11610196578063677edc9b14610b325780636b43974e14610c4b5780636b941a9b14610d57578063715018a614610dbc57806373538fb414610dd35780637e518ec814610e0e57610250565b80632eb2c2d6146106345780633ccfd60b1461086457806340259dad1461087b5780634e1273f4146108ba578063593b79fe14610a6857610250565b80630e89341c116102195780630e89341c146104245780631e7269c5146104d85780631ec32d151461053d5780632693ebf21461059457806328831187146105e357610250565b8062fdd58e1461025557806301ffc9a7146102c457806306fdde03146103365780630b9c8271146103c65780630cd1635d146103f1575b600080fd5b34801561026157600080fd5b506102ae6004803603604081101561027857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611e52565b6040518082815260200191505060405180910390f35b3480156102d057600080fd5b5061031c600480360360208110156102e757600080fd5b8101908080357bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19169060200190929190505050611eac565b604051808215151515815260200191505060405180910390f35b34801561034257600080fd5b5061034b611f5d565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561038b578082015181840152602081019050610370565b50505050905090810190601f1680156103b85780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156103d257600080fd5b506103db611ffb565b6040518082815260200191505060405180910390f35b3480156103fd57600080fd5b50610406612001565b604051808261ffff1661ffff16815260200191505060405180910390f35b34801561043057600080fd5b5061045d6004803603602081101561044757600080fd5b8101908080359060200190929190505050612015565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561049d578082015181840152602081019050610482565b50505050905090810190601f1680156104ca5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156104e457600080fd5b50610527600480360360208110156104fb57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612128565b6040518082815260200191505060405180910390f35b34801561054957600080fd5b50610552612140565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b3480156105a057600080fd5b506105cd600480360360208110156105b757600080fd5b8101908080359060200190929190505050612166565b6040518082815260200191505060405180910390f35b3480156105ef57600080fd5b506106326004803603602081101561060657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061217e565b005b34801561064057600080fd5b50610862600480360360a081101561065757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001906401000000008111156106b457600080fd5b8201836020820111156106c657600080fd5b803590602001918460208302840111640100000000831117156106e857600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f8201169050808301925050505050505091929192908035906020019064010000000081111561074857600080fd5b82018360208201111561075a57600080fd5b8035906020019184602083028401116401000000008311171561077c57600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f820116905080830192505050505050509192919290803590602001906401000000008111156107dc57600080fd5b8201836020820111156107ee57600080fd5b8035906020019184600183028401116401000000008311171561081057600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f82011690508083019250505050505050919291929050505061223c565b005b34801561087057600080fd5b50610879612377565b005b34801561088757600080fd5b506108b86004803603602081101561089e57600080fd5b81019080803561ffff169060200190929190505050612479565b005b3480156108c657600080fd5b50610a11600480360360408110156108dd57600080fd5b81019080803590602001906401000000008111156108fa57600080fd5b82018360208201111561090c57600080fd5b8035906020019184602083028401116401000000008311171561092e57600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f8201169050808301925050505050505091929192908035906020019064010000000081111561098e57600080fd5b8201836020820111156109a057600080fd5b803590602001918460208302840111640100000000831117156109c257600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f820116905080830192505050505050509192919290505050612513565b6040518080602001828103825283818151815260200191508051906020019060200280838360005b83811015610a54578082015181840152602081019050610a39565b505050509050019250505060405180910390f35b348015610a7457600080fd5b50610ab760048036036020811015610a8b57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612659565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610af7578082015181840152602081019050610adc565b50505050905090810190601f168015610b245780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b348015610b3e57600080fd5b50610c3560048036036080811015610b5557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919080359060200190640100000000811115610b9c57600080fd5b820183602082011115610bae57600080fd5b80359060200191846001830284011164010000000083111715610bd057600080fd5b909192939192939080359060200190640100000000811115610bf157600080fd5b820183602082011115610c0357600080fd5b80359060200191846001830284011164010000000083111715610c2557600080fd5b90919293919293905050506126a4565b6040518082815260200191505060405180910390f35b610d4160048036036080811015610c6157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919080359060200190640100000000811115610ca857600080fd5b820183602082011115610cba57600080fd5b80359060200191846001830284011164010000000083111715610cdc57600080fd5b909192939192939080359060200190640100000000811115610cfd57600080fd5b820183602082011115610d0f57600080fd5b80359060200191846001830284011164010000000083111715610d3157600080fd5b909192939192939050505061291d565b6040518082815260200191505060405180910390f35b348015610d6357600080fd5b50610da660048036036020811015610d7a57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612c6b565b6040518082815260200191505060405180910390f35b348015610dc857600080fd5b50610dd1612c83565b005b348015610ddf57600080fd5b50610e0c60048036036020811015610df657600080fd5b8101908080359060200190929190505050612dbe565b005b348015610e1a57600080fd5b50610ed460048036036020811015610e3157600080fd5b8101908080359060200190640100000000811115610e4e57600080fd5b820183602082011115610e6057600080fd5b80359060200191846001830284011164010000000083111715610e8257600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050509192919290505050612e42565b005b348015610ee257600080fd5b50610eeb612ec8565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b61102360048036036080811015610f4357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919080359060200190640100000000811115610f8a57600080fd5b820183602082011115610f9c57600080fd5b80359060200191846001830284011164010000000083111715610fbe57600080fd5b909192939192939080359060200190640100000000811115610fdf57600080fd5b820183602082011115610ff157600080fd5b8035906020019184600183028401116401000000008311171561101357600080fd5b9091929391929390505050612ef2565b6040518082815260200191505060405180910390f35b34801561104557600080fd5b5061104e6135a1565b604051808215151515815260200191505060405180910390f35b34801561107457600080fd5b506110a16004803603602081101561108b57600080fd5b8101908080359060200190929190505050613600565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156110e15780820151818401526020810190506110c6565b50505050905090810190601f16801561110e5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561112857600080fd5b5061121f6004803603608081101561113f57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291908035906020019064010000000081111561118657600080fd5b82018360208201111561119857600080fd5b803590602001918460018302840111640100000000831117156111ba57600080fd5b9091929391929390803590602001906401000000008111156111db57600080fd5b8201836020820111156111ed57600080fd5b8035906020019184600183028401116401000000008311171561120f57600080fd5b9091929391929390505050613777565b6040518082815260200191505060405180910390f35b34801561124157600080fd5b5061124a6139ef565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561128a57808201518184015260208101905061126f565b50505050905090810190601f1680156112b75780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156112d157600080fd5b50611395600480360360408110156112e857600080fd5b81019080803590602001909291908035906020019064010000000081111561130f57600080fd5b82018360208201111561132157600080fd5b8035906020019184600183028401116401000000008311171561134357600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050509192919290505050613a8d565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b3480156113e357600080fd5b50611432600480360360408110156113fa57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803515159060200190929190505050613b1a565b005b34801561144057600080fd5b506114fa6004803603602081101561145757600080fd5b810190808035906020019064010000000081111561147457600080fd5b82018360208201111561148657600080fd5b803590602001918460018302840111640100000000831117156114a857600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050509192919290505050613c1b565b604051808460ff1660ff168152602001838152602001828152602001935050505060405180910390f35b34801561153057600080fd5b506115606004803603602081101561154757600080fd5b81019080803560ff169060200190929190505050613c5e565b60405180827effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200191505060405180910390f35b3480156115c657600080fd5b506115cf613c89565b6040518082815260200191505060405180910390f35b3480156115f157600080fd5b506117426004803603604081101561160857600080fd5b810190808035906020019064010000000081111561162557600080fd5b82018360208201111561163757600080fd5b8035906020019184600183028401116401000000008311171561165957600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050509192919290803590602001906401000000008111156116bc57600080fd5b8201836020820111156116ce57600080fd5b803590602001918460018302840111640100000000831117156116f057600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050509192919290505050613ca8565b604051808215151515815260200191505060405180910390f35b34801561176857600080fd5b5061196a6004803603608081101561177f57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001906401000000008111156117bc57600080fd5b8201836020820111156117ce57600080fd5b803590602001918460208302840111640100000000831117156117f057600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f8201169050808301925050505050505091929192908035906020019064010000000081111561185057600080fd5b82018360208201111561186257600080fd5b8035906020019184602083028401116401000000008311171561188457600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f820116905080830192505050505050509192919290803590602001906401000000008111156118e457600080fd5b8201836020820111156118f657600080fd5b8035906020019184600183028401116401000000008311171561191857600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050509192919290505050613d82565b005b34801561197857600080fd5b506119bb6004803603602081101561198f57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050613ed7565b6040518082815260200191505060405180910390f35b3480156119dd57600080fd5b50611a0a600480360360208110156119f457600080fd5b8101908080359060200190929190505050613eef565b6040518082815260200191505060405180910390f35b348015611a2c57600080fd5b50611a5960048036036020811015611a4357600080fd5b8101908080359060200190929190505050613f0c565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b348015611aa757600080fd5b50611b6160048036036020811015611abe57600080fd5b8101908080359060200190640100000000811115611adb57600080fd5b820183602082011115611aed57600080fd5b80359060200191846001830284011164010000000083111715611b0f57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050509192919290505050613f3f565b6040518082815260200191505060405180910390f35b348015611b8357600080fd5b50611c5a60048036036040811015611b9a57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190640100000000811115611bd757600080fd5b820183602082011115611be957600080fd5b80359060200191846020830284011164010000000083111715611c0b57600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f820116905080830192505050505050509192919290505050613f6a565b005b348015611c6857600080fd5b50611ccb60048036036040811015611c7f57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050614034565b604051808215151515815260200191505060405180910390f35b348015611cf157600080fd5b50611dff600480360360a0811015611d0857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291908035906020019092919080359060200190640100000000811115611d7957600080fd5b820183602082011115611d8b57600080fd5b80359060200191846001830284011164010000000083111715611dad57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f8201169050808301925050505050505091929192905050506140c8565b005b348015611e0d57600080fd5b50611e5060048036036020811015611e2457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050614203565b005b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b60006301ffc9a760e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611f45575063d9b67a2660e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b15611f535760019050611f58565b600090505b919050565b60188054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015611ff35780601f10611fc857610100808354040283529160200191611ff3565b820191906000526020600020905b815481529060010190602001808311611fd657829003601f168201915b505050505081565b600f5481565b601060149054906101000a900461ffff1681565b606061202082614289565b612075576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526025815260200180615d876025913960400191505060405180910390fd5b61212160028054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561210e5780601f106120e35761010080835404028352916020019161210e565b820191906000526020600020905b8154815290600101906020018083116120f157829003601f168201915b505050505061211c846142f5565b614422565b9050919050565b60156020528060005260406000206000915090505481565b601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60176020528060005260406000206000915090505481565b6121866135a1565b6121f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80601160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b8473ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16148061227c575061227b8533614034565b5b6122d1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602f815260200180615dd8602f913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612357576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526030815260200180615d576030913960400191505060405180910390fd5b61236385858585614466565b61237085858585856147cb565b5050505050565b61237f6135a1565b6123f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b60003073ffffffffffffffffffffffffffffffffffffffff16319050601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015612475573d6000803e3d6000fd5b5050565b6124816135a1565b6124f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80601060146101000a81548161ffff021916908361ffff16021790555050565b6060815183511461256f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c815260200180615dac602c913960400191505060405180910390fd5b606083516040519080825280602002602001820160405280156125a15781602001602082028038833980820191505090505b50905060008090505b845181101561264e576000808683815181106125c257fe5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600085838151811061261257fe5b602002602001015181526020019081526020016000205482828151811061263557fe5b60200260200101818152505080806001019150506125aa565b508091505092915050565b606060405173ffffffffffffffffffffffffffffffffffffffff8316925082741400000000000000000000000000000000000000001860148201526034810160405280915050919050565b60006126ae6135a1565b612720576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b60065486600a5401111561279c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600d8152602001807f5265736572766520456d7074790000000000000000000000000000000000000081525060200191505060405180910390fd5b8560096000828254019250508190555060008090505b8681101561290e57600a600081548092919060010191905055506000600a549050600087879050111561284457807f6bb7ff708619ba0610cba295a58592e0451dee2622938c8755667688daf3529b888860405180806020018281038252848482818152602001925080828437600081840152601f19601f820116905080830192505050935050505060405180910390a25b336016600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506128e78982600188888080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f82011690508083019250505050505050614a86565b600160176000838152602001908152602001600020819055505080806001019150506127b2565b50600090509695505050505050565b60006003601060149054906101000a900461ffff1661ffff16146129a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260168152602001807f5075626c69632053616c657320497320436c6f7365640000000000000000000081525060200191505060405180910390fd5b34600f54870214612a22576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600c8152602001807f496e76616c69642046756e64000000000000000000000000000000000000000081525060200191505060405180910390fd5b60055486600954011115612a9e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f4d617820546f6b656e204d696e7465640000000000000000000000000000000081525060200191505060405180910390fd5b8560096000828254019250508190555085601560008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555060008090505b86811015612c5c576000600654612b16614bd4565b019050612b21614bf1565b6000878790501115612b9257807f6bb7ff708619ba0610cba295a58592e0451dee2622938c8755667688daf3529b888860405180806020018281038252848482818152602001925080828437600081840152601f19601f820116905080830192505050935050505060405180910390a25b336016600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550612c358982600188888080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f82011690508083019250505050505050614a86565b60016017600083815260200190815260200160002081905550508080600101915050612b01565b50600090509695505050505050565b60136020528060005260406000206000915090505481565b612c8b6135a1565b612cfd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b612dc66135a1565b612e38576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80600f8190555050565b612e4a6135a1565b612ebc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b612ec581614c05565b50565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60006001601060149054906101000a900461ffff1661ffff161480612f2b57506002601060149054906101000a900461ffff1661ffff16145b612f9d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260128152602001807f50726573616c657320697320636c6f736564000000000000000000000000000081525060200191505060405180910390fd5b60055486600954011115613019576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f4d617820546f6b656e204d696e7465640000000000000000000000000000000081525060200191505060405180910390fd5b61306f61302533614c1f565b86868080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f82011690508083019250505050505050613ca8565b61307833614c1f565b9061311e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b838110156130e35780820151818401526020810190506130c8565b50505050905090810190601f1680156131105780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b506001601060149054906101000a900461ffff1661ffff1614156132365760075486600b540111156131b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f4d617820546f6b656e204d696e7465640000000000000000000000000000000081525060200191505060405180910390fd5b34600d54870214613231576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600c8152602001807f496e76616c69642046756e64000000000000000000000000000000000000000081525060200191505060405180910390fd5b61334a565b6002601060149054906101000a900461ffff1661ffff1614156133495760085486600c540111156132cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f4d617820546f6b656e204d696e7465640000000000000000000000000000000081525060200191505060405180910390fd5b34600e54870214613348576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600c8152602001807f496e76616c69642046756e64000000000000000000000000000000000000000081525060200191505060405180910390fd5b5b5b856009600082825401925050819055506001601060149054906101000a900461ffff1661ffff1614156133d95785601360008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555085600b60008282540192505081905550613455565b6002601060149054906101000a900461ffff1661ffff1614156134545785601460008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555085600c600082825401925050819055505b5b85601560008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555060008090505b868110156135925760006006546134bd614bd4565b0190506134c8614bf1565b336016600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555061356b8982600188888080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f82011690508083019250505050505050614a86565b600160176000838152602001908152602001600020819055505080806001019150506134a8565b50600090509695505050505050565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166135e4614ea0565b73ffffffffffffffffffffffffffffffffffffffff1614905090565b606060008090506060604080519080825280601f01601f19166020018201604052801561363c5781602001600182028038833980820191505090505b509050600091505b80518260ff16101561376d576000600f60f81b8560028560ff168161366557fe5b0460ff166020811061367357fe5b1a60f81b1660f81c9050600060048660028660ff168161368f57fe5b0460ff166020811061369d57fe5b1a60f81b7effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916901c60f81c90506136d382613c5e565b838560ff16815181106136e257fe5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535060018401935061372081613c5e565b838560ff168151811061372f57fe5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535050508180600101925050613644565b8092505050919050565b60006137816135a1565b6137f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6005548660095401111561386f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f4d617820546f6b656e204d696e7465640000000000000000000000000000000081525060200191505060405180910390fd5b8560096000828254019250508190555060008090505b868110156139e057600060065461389a614bd4565b0190506138a5614bf1565b600087879050111561391657807f6bb7ff708619ba0610cba295a58592e0451dee2622938c8755667688daf3529b888860405180806020018281038252848482818152602001925080828437600081840152601f19601f820116905080830192505050935050505060405180910390a25b336016600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506139b98982600188888080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f82011690508083019250505050505050614a86565b60016017600083815260200190815260200160002081905550508080600101915050613885565b50600090509695505050505050565b60198054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015613a855780601f10613a5a57610100808354040283529160200191613a85565b820191906000526020600020905b815481529060010190602001808311613a6857829003601f168201915b505050505081565b600080600080613a9c85613c1b565b80935081945082955050505060018684848460405160008152602001604052604051808581526020018460ff1660ff1681526020018381526020018281526020019450505050506020604051602081039080840390855afa158015613b05573d6000803e3d6000fd5b50505060206040510351935050505092915050565b80600160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051808215151515815260200191505060405180910390a35050565b60008060006041845114613c2e57600080fd5b60008060006020870151925060408701519150606087015160001a90508083839550955095505050509193909250565b6000600a8260ff161015613c7a576030820160f81b9050613c84565b6057820160f81b90505b919050565b60003073ffffffffffffffffffffffffffffffffffffffff1631905090565b600080836040516020018082805190602001908083835b60208310613ce25780518252602082019150602081019050602083039250613cbf565b6001836020036101000a038019825116818451168082178552505050505050905001915050604051602081830303815290604052805190602001209050601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16613d628285613a8d565b73ffffffffffffffffffffffffffffffffffffffff161491505092915050565b60008090505b8351811015613ec4576000848281518110613d9f57fe5b602002602001015190503373ffffffffffffffffffffffffffffffffffffffff166016600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614613e60576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602f815260200180615ca3602f913960400191505060405180910390fd5b6000848381518110613e6e57fe5b60200260200101519050613e9e816017600085815260200190815260200160002054614ea890919063ffffffff16565b601760008481526020019081526020016000208190555050508080600101915050613d88565b50613ed184848484614f30565b50505050565b60146020528060005260406000206000915090505481565b600060176000838152602001908152602001600020549050919050565b60166020528060005260406000206000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60006060829050600081511415613f5c576000801b915050613f65565b60208301519150505b919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613ff0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c815260200180615eb0602c913960400191505060405180910390fd5b60008090505b815181101561402f57600082828151811061400d57fe5b6020026020010151905061402184826151b6565b508080600101915050613ff6565b505050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b8473ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16148061410857506141078533614034565b5b61415d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a815260200180615cf8602a913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156141e3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602b815260200180615c78602b913960400191505060405180910390fd5b6141ef858585856152c5565b6141fc85858585856154b9565b5050505050565b61420b6135a1565b61427d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b614286816156f2565b50565b60008073ffffffffffffffffffffffffffffffffffffffff166016600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b6060600082141561433d576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061441d565b600082905060005b60008214614367578080600101915050600a828161435f57fe5b049150614345565b6060816040519080825280601f01601f19166020018201604052801561439c5781602001600182028038833980820191505090505b50905060006001830390505b6000861461441557600a86816143ba57fe5b0660300160f81b828280600190039350815181106143d457fe5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a868161440d57fe5b0495506143a8565b819450505050505b919050565b606061445e8383604051806020016040528060008152506040518060200160405280600081525060405180602001604052806000815250615838565b905092915050565b80518251146144c0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526035815260200180615d226035913960400191505060405180910390fd5b60008251905060008090505b818110156146bd5761455c8382815181106144e357fe5b60200260200101516000808973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600087858151811061453757fe5b6020026020010151815260200190815260200160002054615afe90919063ffffffff16565b6000808873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008684815181106145a857fe5b602002602001015181526020019081526020016000208190555061464a8382815181106145d157fe5b60200260200101516000808873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600087858151811061462557fe5b6020026020010151815260200190815260200160002054614ea890919063ffffffff16565b6000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600086848151811061469657fe5b602002602001015181526020019081526020016000208190555080806001019150506144cc565b508373ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8686604051808060200180602001838103835285818151815260200191508051906020019060200280838360005b8381101561476d578082015181840152602081019050614752565b50505050905001838103825284818151815260200191508051906020019060200280838360005b838110156147af578082015181840152602081019050614794565b5050505090500194505050505060405180910390a45050505050565b6147ea8473ffffffffffffffffffffffffffffffffffffffff16615b87565b15614a7f5760008473ffffffffffffffffffffffffffffffffffffffff1663bc197c8133888787876040518663ffffffff1660e01b8152600401808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001806020018060200180602001848103845287818151815260200191508051906020019060200280838360005b838110156148d05780820151818401526020810190506148b5565b50505050905001848103835286818151815260200191508051906020019060200280838360005b838110156149125780820151818401526020810190506148f7565b50505050905001848103825285818151815260200191508051906020019080838360005b83811015614951578082015181840152602081019050614936565b50505050905090810190601f16801561497e5780820380516001836020036101000a031916815260200191505b5098505050505050505050602060405180830381600087803b1580156149a357600080fd5b505af11580156149b7573d6000803e3d6000fd5b505050506040513d60208110156149cd57600080fd5b8101908080519060200190929190505050905063bc197c8160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614614a7d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603f815260200180615e37603f913960400191505060405180910390fd5b505b5050505050565b614ae8826000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600086815260200190815260200160002054614ea890919063ffffffff16565b6000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000858152602001908152602001600020819055508373ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628686604051808381526020018281526020019250505060405180910390a4614bce6000858585856154b9565b50505050565b6000614bec6001600454614ea890919063ffffffff16565b905090565b600460008154809291906001019190505550565b8060029080519060200190614c1b929190615bd2565b5050565b606060008273ffffffffffffffffffffffffffffffffffffffff1660001b905060606040518060400160405280601081526020017f303132333435363738396162636465660000000000000000000000000000000081525090506060602a6040519080825280601f01601f191660200182016040528015614caf5781602001600182028038833980820191505090505b5090507f300000000000000000000000000000000000000000000000000000000000000081600081518110614ce057fe5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f780000000000000000000000000000000000000000000000000000000000000081600181518110614d3d57fe5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535060008090505b6014811015614e945782600485600c840160208110614d8d57fe5b1a60f81b7effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916901c60f81c60ff1681518110614dc557fe5b602001015160f81c60f81b826002830260020181518110614de257fe5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535082600f60f81b85600c840160208110614e2657fe5b1a60f81b1660f81c60ff1681518110614e3b57fe5b602001015160f81c60f81b826002830260030181518110614e5857fe5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053508080600101915050614d72565b50809350505050919050565b600033905090565b600080828401905083811015614f26576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260168152602001807f536166654d617468236164643a204f564552464c4f570000000000000000000081525060200191505060405180910390fd5b8091505092915050565b8151835114614f8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526030815260200180615e076030913960400191505060405180910390fd5b60008351905060008090505b8181101561509957615026848281518110614fad57fe5b60200260200101516000808973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600088858151811061500157fe5b6020026020010151815260200190815260200160002054614ea890919063ffffffff16565b6000808873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600087848151811061507257fe5b60200260200101518152602001908152602001600020819055508080600101915050614f96565b508473ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051808060200180602001838103835285818151815260200191508051906020019060200280838360005b8381101561514a57808201518184015260208101905061512f565b50505050905001838103825284818151815260200191508051906020019060200280838360005b8381101561518c578082015181840152602081019050615171565b5050505090500194505050505060405180910390a46151af6000868686866147cb565b5050505050565b803373ffffffffffffffffffffffffffffffffffffffff166016600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461526e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526031815260200180615edc6031913960400191505060405180910390fd5b826016600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550505050565b615327816000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600085815260200190815260200160002054615afe90919063ffffffff16565b6000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000848152602001908152602001600020819055506153dc816000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600085815260200190815260200160002054614ea890919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000848152602001908152602001600020819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628585604051808381526020018281526020019250505060405180910390a450505050565b6154d88473ffffffffffffffffffffffffffffffffffffffff16615b87565b156156eb5760008473ffffffffffffffffffffffffffffffffffffffff1663f23a6e6133888787876040518663ffffffff1660e01b8152600401808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200184815260200183815260200180602001828103825283818151815260200191508051906020019080838360005b838110156155bf5780820151818401526020810190506155a4565b50505050905090810190601f1680156155ec5780820380516001836020036101000a031916815260200191505b509650505050505050602060405180830381600087803b15801561560f57600080fd5b505af1158015615623573d6000803e3d6000fd5b505050506040513d602081101561563957600080fd5b8101908080519060200190929190505050905063f23a6e6160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916146156e9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603a815260200180615e76603a913960400191505060405180910390fd5b505b5050505050565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415615778576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526026815260200180615cd26026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6060808690506060869050606086905060608690506060869050606081518351855187518951010101016040519080825280601f01601f1916602001820160405280156158945781602001600182028038833980820191505090505b5090506060819050600080905060008090505b8851811015615915578881815181106158bc57fe5b602001015160f81c60f81b8383806001019450815181106158d957fe5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535080806001019150506158a7565b5060008090505b875181101561598a5787818151811061593157fe5b602001015160f81c60f81b83838060010194508151811061594e57fe5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350808060010191505061591c565b5060008090505b86518110156159ff578681815181106159a657fe5b602001015160f81c60f81b8383806001019450815181106159c357fe5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053508080600101915050615991565b5060008090505b8551811015615a7457858181518110615a1b57fe5b602001015160f81c60f81b838380600101945081518110615a3857fe5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053508080600101915050615a06565b5060008090505b8451811015615ae957848181518110615a9057fe5b602001015160f81c60f81b838380600101945081518110615aad57fe5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053508080600101915050615a7b565b50819850505050505050505095945050505050565b600082821115615b76576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260178152602001807f536166654d617468237375623a20554e444552464c4f5700000000000000000081525060200191505060405180910390fd5b600082840390508091505092915050565b60008060007fc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a47060001b9050833f91506000801b8214158015615bc95750808214155b92505050919050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10615c1357805160ff1916838001178555615c41565b82800160010185558215615c41579182015b82811115615c40578251825591602001919060010190615c25565b5b509050615c4e9190615c52565b5090565b615c7491905b80821115615c70576000816000905550600101615c58565b5090565b9056fe4552433131353523736166655472616e7366657246726f6d3a20494e56414c49445f524543495049454e54455243313135355472616461626c652362617463684d696e743a204f4e4c595f43524541544f525f414c4c4f5745444f776e61626c653a206e6577206f776e657220697320746865207a65726f20616464726573734552433131353523736166655472616e7366657246726f6d3a20494e56414c49445f4f50455241544f5245524331313535235f7361666542617463685472616e7366657246726f6d3a20494e56414c49445f4152524159535f4c454e47544845524331313535237361666542617463685472616e7366657246726f6d3a20494e56414c49445f524543495049454e544552433732315472616461626c65237572693a204e4f4e4558495354454e545f544f4b454e455243313135352362616c616e63654f6642617463683a20494e56414c49445f41525241595f4c454e47544845524331313535237361666542617463685472616e7366657246726f6d3a20494e56414c49445f4f50455241544f52455243313135354d696e744275726e2362617463684d696e743a20494e56414c49445f4152524159535f4c454e47544845524331313535235f63616c6c6f6e45524331313535426174636852656365697665643a20494e56414c49445f4f4e5f524543454956455f4d45535341474545524331313535235f63616c6c6f6e4552433131353552656365697665643a20494e56414c49445f4f4e5f524543454956455f4d455353414745455243313135355472616461626c652373657443726561746f723a20494e56414c49445f414444524553532e455243313135355472616461626c652363726561746f724f6e6c793a204f4e4c595f43524541544f525f414c4c4f574544a265627a7a723158204574d7900ec84afd32c87b7de7fc7a3e7d5f2c9d409794c7d242a62fcd5ac25564736f6c634300050c0032
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000842656172636c6177000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : _name (string): Bearclaw
-----Encoded View---------------
3 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000008
Arg [2] : 42656172636c6177000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
50774:199:0:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28434:127;;8:9:-1;5:2;;;30:1;27;20:12;5:2;28434:127:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;28434:127:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;30409:240;;8:9:-1;5:2;;;30:1;27;20:12;5:2;30409:240:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;30409:240:0;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;38293:18;;8:9:-1;5:2;;;30:1;27;20:12;5:2;38293:18:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;38293:18:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37491:44;;8:9:-1;5:2;;;30:1;27;20:12;5:2;37491:44:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;37619:28;;8:9:-1;5:2;;;30:1;27;20:12;5:2;37619:28:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;39043:239;;8:9:-1;5:2;;;30:1;27;20:12;5:2;39043:239:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;39043:239:0;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;39043:239:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38076:41;;8:9:-1;5:2;;;30:1;27;20:12;5:2;38076:41:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;38076:41:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;37691:81;;8:9:-1;5:2;;;30:1;27;20:12;5:2;37691:81:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;38221:47;;8:9:-1;5:2;;;30:1;27;20:12;5:2;38221:47:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;38221:47:0;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;46911:120;;8:9:-1;5:2;;;30:1;27;20:12;5:2;46911:120:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;46911:120:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;23611:511;;8:9:-1;5:2;;;30:1;27;20:12;5:2;23611:511:0;;;;;;13:3:-1;8;5:12;2:2;;;30:1;27;20:12;2:2;23611:511:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21:11:-1;8;5:28;2:2;;;46:1;43;36:12;2:2;23611:511:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;23611:511:0;;;;;;101:9:-1;95:2;81:12;77:21;67:8;63:36;60:51;39:11;25:12;22:29;11:108;8:2;;;132:1;129;122:12;8:2;23611:511:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;93:3;85:6;81:16;74:27;137:4;133:9;126:4;121:3;117:14;113:30;106:37;;169:3;161:6;157:16;147:26;;23611:511:0;;;;;;;;;;;;;;;;;21:11:-1;8;5:28;2:2;;;46:1;43;36:12;2:2;23611:511:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;23611:511:0;;;;;;101:9:-1;95:2;81:12;77:21;67:8;63:36;60:51;39:11;25:12;22:29;11:108;8:2;;;132:1;129;122:12;8:2;23611:511:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;93:3;85:6;81:16;74:27;137:4;133:9;126:4;121:3;117:14;113:30;106:37;;169:3;161:6;157:16;147:26;;23611:511:0;;;;;;;;;;;;;;;;;21:11:-1;8;5:28;2:2;;;46:1;43;36:12;2:2;23611:511:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;23611:511:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;39:11;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;23611:511:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;93:3;85:6;81:16;74:27;137:4;133:9;126:4;121:3;117:14;113:30;106:37;;169:3;161:6;157:16;147:26;;23611:511:0;;;;;;;;;;;;;;;:::i;:::-;;44290:122;;8:9:-1;5:2;;;30:1;27;20:12;5:2;44290:122:0;;;:::i;:::-;;46692:97;;8:9:-1;5:2;;;30:1;27;20:12;5:2;46692:97:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;46692:97:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;28849:500;;8:9:-1;5:2;;;30:1;27;20:12;5:2;28849:500:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;28849:500:0;;;;;;;;;;21:11:-1;8;5:28;2:2;;;46:1;43;36:12;2:2;28849:500:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;28849:500:0;;;;;;101:9:-1;95:2;81:12;77:21;67:8;63:36;60:51;39:11;25:12;22:29;11:108;8:2;;;132:1;129;122:12;8:2;28849:500:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;93:3;85:6;81:16;74:27;137:4;133:9;126:4;121:3;117:14;113:30;106:37;;169:3;161:6;157:16;147:26;;28849:500:0;;;;;;;;;;;;;;;;;21:11:-1;8;5:28;2:2;;;46:1;43;36:12;2:2;28849:500:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;28849:500:0;;;;;;101:9:-1;95:2;81:12;77:21;67:8;63:36;60:51;39:11;25:12;22:29;11:108;8:2;;;132:1;129;122:12;8:2;28849:500:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;93:3;85:6;81:16;74:27;137:4;133:9;126:4;121:3;117:14;113:30;106:37;;169:3;161:6;157:16;147:26;;28849:500:0;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;28849:500:0;;;;;;;;;;;;;;;;;40969:317;;8:9:-1;5:2;;;30:1;27;20:12;5:2;40969:317:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;40969:317:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;40969:317:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40343:619;;8:9:-1;5:2;;;30:1;27;20:12;5:2;40343:619:0;;;;;;13:3:-1;8;5:12;2:2;;;30:1;27;20:12;2:2;40343:619:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21:11:-1;8;5:28;2:2;;;46:1;43;36:12;2:2;40343:619:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;40343:619:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;39:11;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;40343:619:0;;;;;;;;;;;;;;21:11:-1;8;5:28;2:2;;;46:1;43;36:12;2:2;40343:619:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;40343:619:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;39:11;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;40343:619:0;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;45869:817;;;;;;13:3:-1;8;5:12;2:2;;;30:1;27;20:12;2:2;45869:817:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21:11:-1;8;5:28;2:2;;;46:1;43;36:12;2:2;45869:817:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;45869:817:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;39:11;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;45869:817:0;;;;;;;;;;;;;;21:11:-1;8;5:28;2:2;;;46:1;43;36:12;2:2;45869:817:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;45869:817:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;39:11;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;45869:817:0;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;37834:50;;8:9:-1;5:2;;;30:1;27;20:12;5:2;37834:50:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;37834:50:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;3205:140;;8:9:-1;5:2;;;30:1;27;20:12;5:2;3205:140:0;;;:::i;:::-;;46795:110;;8:9:-1;5:2;;;30:1;27;20:12;5:2;46795:110:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;46795:110:0;;;;;;;;;;;;;;;;;:::i;:::-;;39698:143;;8:9:-1;5:2;;;30:1;27;20:12;5:2;39698:143:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;39698:143:0;;;;;;;;;;21:11:-1;8;5:28;2:2;;;46:1;43;36:12;2:2;39698:143:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;39698:143:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;39:11;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;39698:143:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;93:3;85:6;81:16;74:27;137:4;133:9;126:4;121:3;117:14;113:30;106:37;;169:3;161:6;157:16;147:26;;39698:143:0;;;;;;;;;;;;;;;:::i;:::-;;2394:79;;8:9:-1;5:2;;;30:1;27;20:12;5:2;2394:79:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;44419:1442;;;;;;13:3:-1;8;5:12;2:2;;;30:1;27;20:12;2:2;44419:1442:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21:11:-1;8;5:28;2:2;;;46:1;43;36:12;2:2;44419:1442:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;44419:1442:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;39:11;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;44419:1442:0;;;;;;;;;;;;;;21:11:-1;8;5:28;2:2;;;46:1;43;36:12;2:2;44419:1442:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;44419:1442:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;39:11;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;44419:1442:0;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;2760:94;;8:9:-1;5:2;;;30:1;27;20:12;5:2;2760:94:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;42354:427;;8:9:-1;5:2;;;30:1;27;20:12;5:2;42354:427:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;42354:427:0;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;42354:427:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47041:647;;8:9:-1;5:2;;;30:1;27;20:12;5:2;47041:647:0;;;;;;13:3:-1;8;5:12;2:2;;;30:1;27;20:12;2:2;47041:647:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21:11:-1;8;5:28;2:2;;;46:1;43;36:12;2:2;47041:647:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;47041:647:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;39:11;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;47041:647:0;;;;;;;;;;;;;;21:11:-1;8;5:28;2:2;;;46:1;43;36:12;2:2;47041:647:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;47041:647:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;39:11;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;47041:647:0;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;38338:20;;8:9:-1;5:2;;;30:1;27;20:12;5:2;38338:20:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;38338:20:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43623:265;;8:9:-1;5:2;;;30:1;27;20:12;5:2;43623:265:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;43623:265:0;;;;;;;;;;;;;;;;;;;21:11:-1;8;5:28;2:2;;;46:1;43;36:12;2:2;43623:265:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;43623:265:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;39:11;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;43623:265:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;93:3;85:6;81:16;74:27;137:4;133:9;126:4;121:3;117:14;113:30;106:37;;169:3;161:6;157:16;147:26;;43623:265:0;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;27440:227;;8:9:-1;5:2;;;30:1;27;20:12;5:2;27440:227:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;27440:227:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;43072:545;;8:9:-1;5:2;;;30:1;27;20:12;5:2;43072:545:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;43072:545:0;;;;;;;;;;21:11:-1;8;5:28;2:2;;;46:1;43;36:12;2:2;43072:545:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;43072:545:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;39:11;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;43072:545:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;93:3;85:6;81:16;74:27;137:4;133:9;126:4;121:3;117:14;113:30;106:37;;169:3;161:6;157:16;147:26;;43072:545:0;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44110:175;;8:9:-1;5:2;;;30:1;27;20:12;5:2;44110:175:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;44110:175:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;47696:106;;8:9:-1;5:2;;;30:1;27;20:12;5:2;47696:106:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;43896:208;;8:9:-1;5:2;;;30:1;27;20:12;5:2;43896:208:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;43896:208:0;;;;;;;;;;21:11:-1;8;5:28;2:2;;;46:1;43;36:12;2:2;43896:208:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;43896:208:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;39:11;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;43896:208:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;93:3;85:6;81:16;74:27;137:4;133:9;126:4;121:3;117:14;113:30;106:37;;169:3;161:6;157:16;147:26;;43896:208:0;;;;;;;;;;;;;;;;;21:11:-1;8;5:28;2:2;;;46:1;43;36:12;2:2;43896:208:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;43896:208:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;39:11;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;43896:208:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;93:3;85:6;81:16;74:27;137:4;133:9;126:4;121:3;117:14;113:30;106:37;;169:3;161:6;157:16;147:26;;43896:208:0;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;48109:473;;8:9:-1;5:2;;;30:1;27;20:12;5:2;48109:473:0;;;;;;13:3:-1;8;5:12;2:2;;;30:1;27;20:12;2:2;48109:473:0;;;;;;;;;;;;;;;;;;;;;21:11:-1;8;5:28;2:2;;;46:1;43;36:12;2:2;48109:473:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;48109:473:0;;;;;;101:9:-1;95:2;81:12;77:21;67:8;63:36;60:51;39:11;25:12;22:29;11:108;8:2;;;132:1;129;122:12;8:2;48109:473:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;93:3;85:6;81:16;74:27;137:4;133:9;126:4;121:3;117:14;113:30;106:37;;169:3;161:6;157:16;147:26;;48109:473:0;;;;;;;;;;;;;;;;;21:11:-1;8;5:28;2:2;;;46:1;43;36:12;2:2;48109:473:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;48109:473:0;;;;;;101:9:-1;95:2;81:12;77:21;67:8;63:36;60:51;39:11;25:12;22:29;11:108;8:2;;;132:1;129;122:12;8:2;48109:473:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;93:3;85:6;81:16;74:27;137:4;133:9;126:4;121:3;117:14;113:30;106:37;;169:3;161:6;157:16;147:26;;48109:473:0;;;;;;;;;;;;;;;;;21:11:-1;8;5:28;2:2;;;46:1;43;36:12;2:2;48109:473:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;48109:473:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;39:11;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;48109:473:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;93:3;85:6;81:16;74:27;137:4;133:9;126:4;121:3;117:14;113:30;106:37;;169:3;161:6;157:16;147:26;;48109:473:0;;;;;;;;;;;;;;;:::i;:::-;;37955:50;;8:9:-1;5:2;;;30:1;27;20:12;5:2;37955:50:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;37955:50:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;39452:110;;8:9:-1;5:2;;;30:1;27;20:12;5:2;39452:110:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;39452:110:0;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;38172:44;;8:9:-1;5:2;;;30:1;27;20:12;5:2;38172:44:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;38172:44:0;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;42785:282;;8:9:-1;5:2;;;30:1;27;20:12;5:2;42785:282:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;42785:282:0;;;;;;;;;;21:11:-1;8;5:28;2:2;;;46:1;43;36:12;2:2;42785:282:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;42785:282:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;39:11;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;42785:282:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;93:3;85:6;81:16;74:27;137:4;133:9;126:4;121:3;117:14;113:30;106:37;;169:3;161:6;157:16;147:26;;42785:282:0;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;48763:279;;8:9:-1;5:2;;;30:1;27;20:12;5:2;48763:279:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;48763:279:0;;;;;;;;;;;;;;;;;;;;;21:11:-1;8;5:28;2:2;;;46:1;43;36:12;2:2;48763:279:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;48763:279:0;;;;;;101:9:-1;95:2;81:12;77:21;67:8;63:36;60:51;39:11;25:12;22:29;11:108;8:2;;;132:1;129;122:12;8:2;48763:279:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;93:3;85:6;81:16;74:27;137:4;133:9;126:4;121:3;117:14;113:30;106:37;;169:3;161:6;157:16;147:26;;48763:279:0;;;;;;;;;;;;;;;:::i;:::-;;27926:155;;8:9:-1;5:2;;;30:1;27;20:12;5:2;27926:155:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;27926:155:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;22673:545;;8:9:-1;5:2;;;30:1;27;20:12;5:2;22673:545:0;;;;;;13:3:-1;8;5:12;2:2;;;30:1;27;20:12;2:2;22673:545:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21:11:-1;8;5:28;2:2;;;46:1;43;36:12;2:2;22673:545:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;22673:545:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;39:11;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;22673:545:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;93:3;85:6;81:16;74:27;137:4;133:9;126:4;121:3;117:14;113:30;106:37;;169:3;161:6;157:16;147:26;;22673:545:0;;;;;;;;;;;;;;;:::i;:::-;;3500:109;;8:9:-1;5:2;;;30:1;27;20:12;5:2;3500:109:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;3500:109:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;28434:127;28508:7;28534:8;:16;28543:6;28534:16;;;;;;;;;;;;;;;:21;28551:3;28534:21;;;;;;;;;;;;28527:28;;28434:127;;;;:::o;30409:240::-;30480:4;29632:10;30513:26;;30497:42;;;:12;:42;;;;:98;;;;30176:10;30568:27;;30552:43;;;:12;:43;;;;30497:98;30493:132;;;30613:4;30606:11;;;;30493:132;30638:5;30631:12;;30409:240;;;;:::o;38293:18::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;37491:44::-;;;;:::o;37619:28::-;;;;;;;;;;;;;:::o;39043:239::-;39100:13;39130:12;39138:3;39130:7;:12::i;:::-;39122:62;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39198:78;39224:15;39198:78;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39248:21;39265:3;39248:16;:21::i;:::-;39198:17;:78::i;:::-;39191:85;;39043:239;;;:::o;38076:41::-;;;;;;;;;;;;;;;;;:::o;37691:81::-;;;;;;;;;;;;;:::o;38221:47::-;;;;;;;;;;;;;;;;;:::o;46911:120::-;2606:9;:7;:9::i;:::-;2598:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47016:9;47000:13;;:25;;;;;;;;;;;;;;;;;;46911:120;:::o;23611:511::-;23806:5;23792:19;;:10;:19;;;23791:60;;;;23816:35;23833:5;23840:10;23816:16;:35::i;:::-;23791:60;23783:120;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23933:1;23918:17;;:3;:17;;;;23910:78;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23997:50;24020:5;24027:3;24032:4;24038:8;23997:22;:50::i;:::-;24054:62;24082:5;24089:3;24094:4;24100:8;24110:5;24054:27;:62::i;:::-;23611:511;;;;;:::o;44290:122::-;2606:9;:7;:9::i;:::-;2598:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44332:15;44358:4;44350:21;;;44332:39;;44376:13;;;;;;;;;;;:22;;:31;44399:7;44376:31;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;44376:31:0;2663:1;44290:122::o;46692:97::-;2606:9;:7;:9::i;:::-;2598:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46778:5;46765:10;;:18;;;;;;;;;;;;;;;;;;46692:97;:::o;28849:500::-;28948:16;29002:4;:11;28984:7;:14;:29;28976:86;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29089:30;29136:7;:14;29122:29;;;;;;;;;;;;;;;;;;;;;;29:2:-1;21:6;17:15;117:4;105:10;97:6;88:34;148:4;140:6;136:17;126:27;;0:157;29122:29:0;;;;29089:62;;29210:9;29222:1;29210:13;;29205:110;29229:7;:14;29225:1;:18;29205:110;;;29278:8;:20;29287:7;29295:1;29287:10;;;;;;;;;;;;;;29278:20;;;;;;;;;;;;;;;:29;29299:4;29304:1;29299:7;;;;;;;;;;;;;;29278:29;;;;;;;;;;;;29259:13;29273:1;29259:16;;;;;;;;;;;;;:48;;;;;29245:3;;;;;;;29205:110;;;;29330:13;29323:20;;;28849:500;;;;:::o;40969:317::-;41018:14;41075:4;41069:11;41102:42;41099:1;41095:50;41090:55;;41224:1;41178:44;41174:52;41169:2;41166:1;41162:10;41155:72;41257:2;41254:1;41250:10;41244:4;41237:24;41276:1;41271:6;;41049:234;;;;:::o;40343:619::-;40504:7;2606:9;:7;:9::i;:::-;2598:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40563:12;;40545:14;40528;;:31;:47;;40520:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40610:14;40602:4;;:22;;;;;;;;;;;40642:9;40654:1;40642:13;;40637:305;40661:14;40657:1;:18;40637:305;;;40691:14;;:16;;;;;;;;;;;;;40716:11;40730:14;;40716:28;;40780:1;40765:4;;40759:18;;:22;40755:68;;;40809:3;40799:14;40803:4;;40799:14;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;93:3;85:6;81:16;74:27;137:4;133:9;126:4;121:3;117:14;113:30;106:37;;169:3;161:6;157:16;147:26;;40799:14:0;;;;;;;;;;;;;;40755:68;40851:10;40835:8;:13;40844:3;40835:13;;;;;;;;;;;;:26;;;;;;;;;;;;;;;;;;40870:35;40876:13;40891:3;40896:1;40899:5;;40870:35;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;93:3;85:6;81:16;74:27;137:4;133:9;126:4;121:3;117:14;113:30;106:37;;169:3;161:6;157:16;147:26;;40870:35:0;;;;;;:5;:35::i;:::-;40933:1;40914:11;:16;40926:3;40914:16;;;;;;;;;;;:20;;;;40637:305;40677:3;;;;;;;40637:305;;;;40955:1;40948:8;;40343:619;;;;;;;;:::o;45869:817::-;46032:7;46070:1;46056:10;;;;;;;;;;;:15;;;46048:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46151:9;46131:16;;46114:14;:33;:46;46106:72;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46218:16;;46200:14;46193:4;;:21;:41;;46185:70;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46272:14;46264:4;;:22;;;;;;;;;;;46318:14;46293:6;:21;46300:13;46293:21;;;;;;;;;;;;;;;;:39;;;;;;;;;;;46346:9;46358:1;46346:13;;46341:325;46365:14;46361:1;:18;46341:325;;;46395:11;46429:12;;46409:17;:15;:17::i;:::-;:32;46395:46;;46450:23;:21;:23::i;:::-;46508:1;46493:4;;46487:18;;:22;46483:66;;;46536:3;46526:14;46530:4;;46526:14;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;93:3;85:6;81:16;74:27;137:4;133:9;126:4;121:3;117:14;113:30;106:37;;169:3;161:6;157:16;147:26;;46526:14:0;;;;;;;;;;;;;;46483:66;46575:10;46559:8;:13;46568:3;46559:13;;;;;;;;;;;;:26;;;;;;;;;;;;;;;;;;46594:35;46600:13;46615:3;46620:1;46623:5;;46594:35;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;93:3;85:6;81:16;74:27;137:4;133:9;126:4;121:3;117:14;113:30;106:37;;169:3;161:6;157:16;147:26;;46594:35:0;;;;;;:5;:35::i;:::-;46657:1;46638:11;:16;46650:3;46638:16;;;;;;;;;;;:20;;;;46341:325;46381:3;;;;;;;46341:325;;;;46679:1;46672:8;;45869:817;;;;;;;;:::o;37834:50::-;;;;;;;;;;;;;;;;;:::o;3205:140::-;2606:9;:7;:9::i;:::-;2598:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3304:1;3267:40;;3288:6;;;;;;;;;;;3267:40;;;;;;;;;;;;3335:1;3318:6;;:19;;;;;;;;;;;;;;;;;;3205:140::o;46795:110::-;2606:9;:7;:9::i;:::-;2598:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46894:5;46875:16;:24;;;;46795:110;:::o;39698:143::-;2606:9;:7;:9::i;:::-;2598:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39795:40;39815:19;39795;:40::i;:::-;39698:143;:::o;2394:79::-;2432:7;2459:6;;;;;;;;;;;2452:13;;2394:79;:::o;44419:1442::-;44578:7;44616:1;44602:10;;;;;;;;;;;:15;;;:34;;;;44635:1;44621:10;;;;;;;;;;;:15;;;44602:34;44594:65;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44699:16;;44681:14;44674:4;;:21;:41;;44666:70;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44751:46;44763:27;44779:10;44763:15;:27::i;:::-;44792:4;;44751:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;93:3;85:6;81:16;74:27;137:4;133:9;126:4;121:3;117:14;113:30;106:37;;169:3;161:6;157:16;147:26;;44751:46:0;;;;;;:11;:46::i;:::-;44799:27;44815:10;44799:15;:27::i;:::-;44743:84;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;44743:84:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44853:1;44839:10;;;;;;;;;;;:15;;;44836:399;;;44908:17;;44890:14;44872:15;;:32;:53;;44864:82;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44998:9;44980:14;;44963;:31;:44;44955:70;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44836:399;;;45055:1;45041:10;;;;;;;;;;;:15;;;45038:197;;;45110:17;;45092:14;45074:15;;:32;:53;;45066:82;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45200:9;45182:14;;45165;:31;:44;45157:70;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45038:197;44836:399;45255:14;45247:4;;:22;;;;;;;;;;;45295:1;45281:10;;;;;;;;;;;:15;;;45278:257;;;45340:14;45306:15;:30;45322:13;45306:30;;;;;;;;;;;;;;;;:48;;;;;;;;;;;45382:14;45363:15;;:33;;;;;;;;;;;45278:257;;;45426:1;45412:10;;;;;;;;;;;:15;;;45409:126;;;45471:14;45437:15;:30;45453:13;45437:30;;;;;;;;;;;;;;;;:48;;;;;;;;;;;45513:14;45494:15;;:33;;;;;;;;;;;45409:126;45278:257;45568:14;45543:6;:21;45550:13;45543:21;;;;;;;;;;;;;;;;:39;;;;;;;;;;;45596:9;45608:1;45596:13;;45591:248;45615:14;45611:1;:18;45591:248;;;45645:11;45679:12;;45659:17;:15;:17::i;:::-;:32;45645:46;;45700:23;:21;:23::i;:::-;45748:10;45732:8;:13;45741:3;45732:13;;;;;;;;;;;;:26;;;;;;;;;;;;;;;;;;45767:35;45773:13;45788:3;45793:1;45796:5;;45767:35;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;93:3;85:6;81:16;74:27;137:4;133:9;126:4;121:3;117:14;113:30;106:37;;169:3;161:6;157:16;147:26;;45767:35:0;;;;;;:5;:35::i;:::-;45830:1;45811:11;:16;45823:3;45811:16;;;;;;;;;;;:20;;;;45591:248;45631:3;;;;;;;45591:248;;;;45854:1;45847:8;;44419:1442;;;;;;;;:::o;2760:94::-;2800:4;2840:6;;;;;;;;;;;2824:22;;:12;:10;:12::i;:::-;:22;;;2817:29;;2760:94;:::o;42354:427::-;42418:13;42440:7;42450:1;42440:11;;42458:23;42494:2;42484:13;;;;;;;;;;;;;;;;;;;;;;;;;29:1:-1;21:6;17:14;116:4;104:10;96:6;87:34;147:4;139:6;135:17;125:27;;0:156;42484:13:0;;;;42458:39;;42513:1;42509:5;;42504:242;42520:10;:17;42516:1;:21;;;42504:242;;;42557:8;42590:4;42574:20;;:8;42585:1;42583;:3;;;;;;;;42574:13;;;;;;;;;;;;:20;42568:27;;42557:38;;42606:8;42640:1;42623:8;42634:1;42632;:3;;;;;;;;42623:13;;;;;;;;;;;;:18;;;;;42617:25;;42606:36;;42671:10;42678:2;42671:6;:10::i;:::-;42655;42666:1;42655:13;;;;;;;;;;;;;:26;;;;;;;;;;;42700:1;42696;:5;42692:9;;42728:10;42735:2;42728:6;:10::i;:::-;42712;42723:1;42712:13;;;;;;;;;;;;;:26;;;;;;;;;;;42504:242;;42539:3;;;;;;;42504:242;;;42766:10;42752:25;;;;42354:427;;;:::o;47041:647::-;47204:7;2606:9;:7;:9::i;:::-;2598:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47253:16;;47235:14;47228:4;;:21;:41;;47220:70;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47307:14;47299:4;;:22;;;;;;;;;;;47339:9;47351:1;47339:13;;47334:334;47358:14;47354:1;:18;47334:334;;;47390:11;47424:12;;47404:17;:15;:17::i;:::-;:32;47390:46;;47447:23;:21;:23::i;:::-;47506:1;47491:4;;47485:18;;:22;47481:68;;;47535:3;47525:14;47529:4;;47525:14;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;93:3;85:6;81:16;74:27;137:4;133:9;126:4;121:3;117:14;113:30;106:37;;169:3;161:6;157:16;147:26;;47525:14:0;;;;;;;;;;;;;;47481:68;47577:10;47561:8;:13;47570:3;47561:13;;;;;;;;;;;;:26;;;;;;;;;;;;;;;;;;47596:35;47602:13;47617:3;47622:1;47625:5;;47596:35;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;93:3;85:6;81:16;74:27;137:4;133:9;126:4;121:3;117:14;113:30;106:37;;169:3;161:6;157:16;147:26;;47596:35:0;;;;;;:5;:35::i;:::-;47659:1;47640:11;:16;47652:3;47640:16;;;;;;;;;;;:20;;;;47334:334;47374:3;;;;;;;47334:334;;;;47681:1;47674:8;;47041:647;;;;;;;;:::o;38338:20::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;43623:265::-;43726:7;43750;43767:9;43786;43819:19;43834:3;43819:14;:19::i;:::-;43807:31;;;;;;;;;;;;43855:27;43865:7;43874:1;43877;43880;43855:27;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;43855:27:0;;;;;;;;43848:34;;;;;43623:265;;;;:::o;27440:227::-;27592:9;27557;:21;27567:10;27557:21;;;;;;;;;;;;;;;:32;27579:9;27557:32;;;;;;;;;;;;;;;;:44;;;;;;;;;;;;;;;;;;27640:9;27613:48;;27628:10;27613:48;;;27651:9;27613:48;;;;;;;;;;;;;;;;;;;;;;27440:227;;:::o;43072:545::-;43159:5;43166:7;43175;43220:2;43206:3;:10;:16;43198:25;;;;;;43235:9;43254;43273:7;43390:2;43385:3;43381:12;43375:19;43370:24;;43458:2;43453:3;43449:12;43443:19;43438:24;;43563:2;43558:3;43554:12;43548:19;43545:1;43540:28;43535:33;;43602:1;43605;43608;43594:16;;;;;;;;;43072:545;;;;;:::o;44110:175::-;44161:4;44186:2;44177:6;:11;;;44174:108;;;44222:2;44213:6;:11;44208:17;;44201:24;;;;44174:108;44271:2;44262:6;:11;44257:17;;44250:24;;44110:175;;;;:::o;47696:106::-;47746:7;47781:4;47773:21;;;47766:28;;47696:106;:::o;43896:208::-;43976:4;43988:15;44033:5;44016:23;;;;;;;;;;;;;;;36:153:-1;66:2;61:3;58:11;36:153;;182:3;176:10;171:3;164:23;98:2;93:3;89:12;82:19;;123:2;118:3;114:12;107:19;;148:2;143:3;139:12;132:19;;36:153;;;274:1;267:3;263:2;259:12;254:3;250:22;246:30;315:4;311:9;305:3;299:10;295:26;356:4;350:3;344:10;340:21;389:7;380;377:20;372:3;365:33;3:399;;;44016:23:0;;;;;;;;;;;49:4:-1;39:7;30;26:21;22:32;13:7;6:49;44016:23:0;;;44006:34;;;;;;43988:52;;44086:13;;;;;;;;;;;44055:44;;:27;44069:7;44078:3;44055:13;:27::i;:::-;:44;;;44047:53;;;43896:208;;;;:::o;48109:473::-;48258:9;48270:1;48258:13;;48253:276;48277:4;:11;48273:1;:15;48253:276;;;48304:11;48318:4;48323:1;48318:7;;;;;;;;;;;;;;48304:21;;48359:10;48342:27;;:8;:13;48351:3;48342:13;;;;;;;;;;;;;;;;;;;;;:27;;;48334:87;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48430:16;48449:11;48461:1;48449:14;;;;;;;;;;;;;;48430:33;;48491:30;48512:8;48491:11;:16;48503:3;48491:16;;;;;;;;;;;;:20;;:30;;;;:::i;:::-;48472:11;:16;48484:3;48472:16;;;;;;;;;;;:49;;;;48253:276;;48290:3;;;;;;;48253:276;;;;48535:41;48546:3;48551:4;48557:11;48570:5;48535:10;:41::i;:::-;48109:473;;;;:::o;37955:50::-;;;;;;;;;;;;;;;;;:::o;39452:110::-;39517:7;39540:11;:16;39552:3;39540:16;;;;;;;;;;;;39533:23;;39452:110;;;:::o;38172:44::-;;;;;;;;;;;;;;;;;;;;;;:::o;42785:282::-;42853:14;42876:32;42917:6;42876:48;;42965:1;42935:19;:26;:31;42931:66;;;42986:3;42979:10;;;;;;;42931:66;43053:2;43045:6;43041:15;43035:22;43025:32;;43014:50;;;;;:::o;48763:279::-;48871:1;48856:17;;:3;:17;;;;48848:74;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48934:9;48946:1;48934:13;;48929:108;48953:4;:11;48949:1;:15;48929:108;;;48980:10;48993:4;48998:1;48993:7;;;;;;;;;;;;;;48980:20;;49009;49021:3;49026:2;49009:11;:20::i;:::-;48929:108;48966:3;;;;;;;48929:108;;;;48763:279;;:::o;27926:155::-;28013:15;28047:9;:17;28057:6;28047:17;;;;;;;;;;;;;;;:28;28065:9;28047:28;;;;;;;;;;;;;;;;;;;;;;;;;28040:35;;27926:155;;;;:::o;22673:545::-;22822:5;22808:19;;:10;:19;;;22807:60;;;;22832:35;22849:5;22856:10;22832:16;:35::i;:::-;22807:60;22799:115;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22944:1;22929:17;;:3;:17;;;;22921:72;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23107:43;23125:5;23132:3;23137;23142:7;23107:17;:43::i;:::-;23157:55;23180:5;23187:3;23192;23197:7;23206:5;23157:22;:55::i;:::-;22673:545;;;;;:::o;3500:109::-;2606:9;:7;:9::i;:::-;2598:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3573:28;3592:8;3573:18;:28::i;:::-;3500:109;:::o;50100:116::-;50163:4;50208:1;50183:27;;:8;:13;50192:3;50183:13;;;;;;;;;;;;;;;;;;;;;:27;;;;50176:34;;50100:116;;;:::o;35835:482::-;35885:27;35935:1;35929:2;:7;35925:50;;;35953:10;;;;;;;;;;;;;;;;;;;;;35925:50;35985:6;35994:2;35985:11;;36007:8;36026:69;36038:1;36033;:6;36026:69;;36056:5;;;;;;;36081:2;36076:7;;;;;;;;;36026:69;;;36105:17;36135:3;36125:14;;;;;;;;;;;;;;;;;;;;;;;;;29:1:-1;21:6;17:14;116:4;104:10;96:6;87:34;147:4;139:6;135:17;125:27;;0:156;36125:14:0;;;;36105:34;;36150:6;36165:1;36159:3;:7;36150:16;;36177:103;36190:1;36184:2;:7;36177:103;;36241:2;36236;:7;;;;;;36231:2;:12;36220:25;;36208:4;36213:3;;;;;;;36208:9;;;;;;;;;;;:37;;;;;;;;;;;36266:2;36260:8;;;;;;;;;36177:103;;;36304:4;36290:19;;;;;;35835:482;;;;:::o;35679:148::-;35757:13;35790:29;35800:2;35804;35790:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:9;:29::i;:::-;35783:36;;35679:148;;;;:::o;25750:687::-;25907:8;:15;25892:4;:11;:30;25884:96;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26027:17;26047:4;:11;26027:31;;26104:9;26116:1;26104:13;;26099:247;26123:9;26119:1;:13;26099:247;;;26224:41;26253:8;26262:1;26253:11;;;;;;;;;;;;;;26224:8;:15;26233:5;26224:15;;;;;;;;;;;;;;;:24;26240:4;26245:1;26240:7;;;;;;;;;;;;;;26224:24;;;;;;;;;;;;:28;;:41;;;;:::i;:::-;26197:8;:15;26206:5;26197:15;;;;;;;;;;;;;;;:24;26213:4;26218:1;26213:7;;;;;;;;;;;;;;26197:24;;;;;;;;;;;:68;;;;26299:39;26326:8;26335:1;26326:11;;;;;;;;;;;;;;26299:8;:13;26308:3;26299:13;;;;;;;;;;;;;;;:22;26313:4;26318:1;26313:7;;;;;;;;;;;;;;26299:22;;;;;;;;;;;;:26;;:39;;;;:::i;:::-;26274:8;:13;26283:3;26274:13;;;;;;;;;;;;;;;:22;26288:4;26293:1;26288:7;;;;;;;;;;;;;;26274:22;;;;;;;;;;;:64;;;;26134:3;;;;;;;26099:247;;;;26411:3;26378:53;;26404:5;26378:53;;26392:10;26378:53;;;26416:4;26422:8;26378:53;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;26378:53:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;26378:53:0;;;;;;;;;;;;;;;;;;;25750:687;;;;;:::o;26555:476::-;26761:16;:3;:14;;;:16::i;:::-;26757:269;;;26788:13;26826:3;26804:49;;;26854:10;26866:5;26873:4;26879:8;26889:5;26804:91;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;26804:91:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;26804:91:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;26804:91:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;26804:91:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;26804:91:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;26804:91:0;;;;;;;;;;;;;;;;26788:107;;21568:10;26922:28;;26912:38;;;:6;:38;;;;26904:114;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26757:269;;26555:476;;;;;:::o;31385:401::-;31528:31;31551:7;31528:8;:13;31537:3;31528:13;;;;;;;;;;;;;;;:18;31542:3;31528:18;;;;;;;;;;;;:22;;:31;;;;:::i;:::-;31507:8;:13;31516:3;31507:13;;;;;;;;;;;;;;;:18;31521:3;31507:18;;;;;;;;;;;:52;;;;31633:3;31592:59;;31627:3;31592:59;;31607:10;31592:59;;;31638:3;31643:7;31592:59;;;;;;;;;;;;;;;;;;;;;;;;31718:62;31749:3;31755;31760;31765:7;31774:5;31718:22;:62::i;:::-;31385:401;;;;:::o;50357:100::-;50406:7;50429:22;50449:1;50429:15;;:19;;:22;;;;:::i;:::-;50422:29;;50357:100;:::o;50530:72::-;50579:15;;:17;;;;;;;;;;;;;50530:72::o;20086:123::-;20184:19;20166:15;:37;;;;;;;;;;;;:::i;:::-;;20086:123;:::o;41290:456::-;41352:13;41374;41406:5;41398:14;;41390:23;;41374:39;;41420:21;:42;;;;;;;;;;;;;;;;;;;41471:16;41500:2;41490:13;;;;;;;;;;;;;;;;;;;;;;;;;29:1:-1;21:6;17:14;116:4;104:10;96:6;87:34;147:4;139:6;135:17;125:27;;0:156;41490:13:0;;;;41471:32;;41510:12;:3;41514:1;41510:6;;;;;;;;;;;:12;;;;;;;;;;;41529;:3;41533:1;41529:6;;;;;;;;;;;:12;;;;;;;;;;;41553:6;41562:1;41553:10;;41548:170;41569:2;41565:1;:6;41548:170;;;41602:8;41639:1;41622:5;41632:2;41628:1;:6;41622:13;;;;;;;;;;:18;;;;;41616:25;;41611:31;;41602:41;;;;;;;;;;;;;;;;41589:3;41597:1;41595;:3;41593:1;:5;41589:10;;;;;;;;;;;:54;;;;;;;;;;;41667:8;41703:4;41687:20;;:5;41697:2;41693:1;:6;41687:13;;;;;;;;;;:20;41681:27;;41676:33;;41667:43;;;;;;;;;;;;;;;;41654:3;41662:1;41660;:3;41658:1;:5;41654:10;;;;;;;;;;;:56;;;;;;;;;;;41573:3;;;;;;;41548:170;;;;41738:3;41724:18;;;;;41290:456;;;:::o;1091:98::-;1136:15;1171:10;1164:17;;1091:98;:::o;6098:163::-;6156:7;6172:9;6188:1;6184;:5;6172:17;;6209:1;6204;:6;;6196:41;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6253:1;6246:8;;;6098:163;;;;:::o;32073:724::-;32223:8;:15;32208:4;:11;:30;32200:91;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32335:13;32351:4;:11;32335:27;;32407:9;32419:1;32407:13;;32402:150;32426:5;32422:1;:9;32402:150;;;32505:39;32532:8;32541:1;32532:11;;;;;;;;;;;;;;32505:8;:13;32514:3;32505:13;;;;;;;;;;;;;;;:22;32519:4;32524:1;32519:7;;;;;;;;;;;;;;32505:22;;;;;;;;;;;;:26;;:39;;;;:::i;:::-;32480:8;:13;32489:3;32480:13;;;;;;;;;;;;;;;:22;32494:4;32499:1;32494:7;;;;;;;;;;;;;;32480:22;;;;;;;;;;;:64;;;;32433:3;;;;;;;32402:150;;;;32635:3;32595:60;;32629:3;32595:60;;32609:10;32595:60;;;32640:4;32646:8;32595:60;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;32595:60:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;32595:60:0;;;;;;;;;;;;;;;;;;;32722:69;32758:3;32764;32769:4;32775:8;32785:5;32722:27;:69::i;:::-;32073:724;;;;;:::o;49762:110::-;49830:3;38509:10;38492:27;;:8;:13;38501:3;38492:13;;;;;;;;;;;;;;;;;;;;;:27;;;38484:89;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49863:3;49847:8;:13;49856:3;49847:13;;;;;;;;;;;;:19;;;;;;;;;;;;;;;;;;49762:110;;;:::o;24526:376::-;24682:33;24707:7;24682:8;:15;24691:5;24682:15;;;;;;;;;;;;;;;:20;24698:3;24682:20;;;;;;;;;;;;:24;;:33;;;;:::i;:::-;24659:8;:15;24668:5;24659:15;;;;;;;;;;;;;;;:20;24675:3;24659:20;;;;;;;;;;;:56;;;;24762:31;24785:7;24762:8;:13;24771:3;24762:13;;;;;;;;;;;;;;;:18;24776:3;24762:18;;;;;;;;;;;;:22;;:31;;;;:::i;:::-;24741:8;:13;24750:3;24741:13;;;;;;;;;;;;;;;:18;24755:3;24741:18;;;;;;;;;;;:52;;;;24878:3;24844:52;;24871:5;24844:52;;24859:10;24844:52;;;24883:3;24888:7;24844:52;;;;;;;;;;;;;;;;;;;;;;;;24526:376;;;;:::o;25015:429::-;25192:16;:3;:14;;;:16::i;:::-;25188:251;;;25219:13;25257:3;25235:44;;;25280:10;25292:5;25299:3;25304:7;25313:5;25235:84;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;25235:84:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;25235:84:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;25235:84:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;25235:84:0;;;;;;;;;;;;;;;;25219:100;;21497:10;25346:22;;25336:32;;;:6;:32;;;;25328:103;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25188:251;;25015:429;;;;;:::o;3715:229::-;3809:1;3789:22;;:8;:22;;;;3781:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3899:8;3870:38;;3891:6;;;;;;;;;;;3870:38;;;;;;;;;;;;3928:8;3919:6;;:17;;;;;;;;;;;;;;;;;;3715:229;:::o;34433:872::-;34565:13;34589:16;34614:2;34589:28;;34626:16;34651:2;34626:28;;34663:16;34688:2;34663:28;;34700:16;34725:2;34700:28;;34737:16;34762:2;34737:28;;34774:19;34859:3;:10;34846:3;:10;34833:3;:10;34820:3;:10;34807:3;:10;:23;:36;:49;:62;34796:74;;;;;;;;;;;;;;;;;;;;;;;;;29:1:-1;21:6;17:14;116:4;104:10;96:6;87:34;147:4;139:6;135:17;125:27;;0:156;34796:74:0;;;;34774:96;;34879:19;34907:5;34879:34;;34922:6;34931:1;34922:10;;34946:6;34955:1;34946:10;;34941:58;34962:3;:10;34958:1;:14;34941:58;;;34993:3;34997:1;34993:6;;;;;;;;;;;;;;;;34979;34986:3;;;;;;34979:11;;;;;;;;;;;:20;;;;;;;;;;;34974:3;;;;;;;34941:58;;;;35013:6;35022:1;35013:10;;35008:58;35029:3;:10;35025:1;:14;35008:58;;;35060:3;35064:1;35060:6;;;;;;;;;;;;;;;;35046;35053:3;;;;;;35046:11;;;;;;;;;;;:20;;;;;;;;;;;35041:3;;;;;;;35008:58;;;;35080:6;35089:1;35080:10;;35075:58;35096:3;:10;35092:1;:14;35075:58;;;35127:3;35131:1;35127:6;;;;;;;;;;;;;;;;35113;35120:3;;;;;;35113:11;;;;;;;;;;;:20;;;;;;;;;;;35108:3;;;;;;;35075:58;;;;35147:6;35156:1;35147:10;;35142:58;35163:3;:10;35159:1;:14;35142:58;;;35194:3;35198:1;35194:6;;;;;;;;;;;;;;;;35180;35187:3;;;;;;35180:11;;;;;;;;;;;:20;;;;;;;;;;;35175:3;;;;;;;35142:58;;;;35214:6;35223:1;35214:10;;35209:58;35230:3;:10;35226:1;:14;35209:58;;;35261:3;35265:1;35261:6;;;;;;;;;;;;;;;;35247;35254:3;;;;;;35247:11;;;;;;;;;;;:20;;;;;;;;;;;35242:3;;;;;;;35209:58;;;;35290:6;35276:21;;;;;;;;;;34433:872;;;;;;;:::o;5855:163::-;5913:7;5942:1;5937;:6;;5929:42;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5978:9;5994:1;5990;:5;5978:17;;6011:1;6004:8;;;5855:163;;;;:::o;16961:673::-;17021:4;17034:16;17057:19;17079:66;17057:88;;;;17561:7;17549:20;17537:32;;17597:3;17585:15;;:8;:15;;:42;;;;;17616:11;17604:8;:23;;17585:42;17577:51;;;;16961:673;;;:::o;50774:199::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o
Swarm Source
bzzr://4574d7900ec84afd32c87b7de7fc7a3e7d5f2c9d409794c7d242a62fcd5ac255
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.