Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 101 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Set Approval For... | 19169361 | 324 days ago | IN | 0 ETH | 0.00101253 | ||||
Set Approval For... | 19169305 | 324 days ago | IN | 0 ETH | 0.00177015 | ||||
Set Approval For... | 18319604 | 443 days ago | IN | 0 ETH | 0.00029791 | ||||
Set Approval For... | 16264332 | 731 days ago | IN | 0 ETH | 0.00068361 | ||||
Set Approval For... | 16049546 | 761 days ago | IN | 0 ETH | 0.00053663 | ||||
Withdraw ETH | 15868527 | 787 days ago | IN | 0 ETH | 0.0011678 | ||||
Mint | 15868275 | 787 days ago | IN | 0.022 ETH | 0.00298533 | ||||
Mint | 15868238 | 787 days ago | IN | 0.022 ETH | 0.00277712 | ||||
Mint With Seed | 15868226 | 787 days ago | IN | 0.074 ETH | 0.00183647 | ||||
Mint | 15868072 | 787 days ago | IN | 0.022 ETH | 0.00178018 | ||||
Mint | 15867952 | 787 days ago | IN | 0.022 ETH | 0.00169594 | ||||
Mint With Seed | 15867054 | 787 days ago | IN | 0.074 ETH | 0.00102648 | ||||
Mint With Seed | 15865276 | 787 days ago | IN | 0.074 ETH | 0.00041025 | ||||
Mint | 15865156 | 787 days ago | IN | 0.022 ETH | 0.00056811 | ||||
Mint With Seed | 15865154 | 787 days ago | IN | 0.074 ETH | 0.00051218 | ||||
Mint | 15864916 | 787 days ago | IN | 0.022 ETH | 0.00087302 | ||||
Mint | 15862896 | 787 days ago | IN | 0.022 ETH | 0.00065778 | ||||
Loyal Mint | 15862890 | 787 days ago | IN | 0 ETH | 0.00097737 | ||||
Mint | 15856012 | 788 days ago | IN | 0.022 ETH | 0.00156754 | ||||
Mint | 15855455 | 789 days ago | IN | 0.022 ETH | 0.00161311 | ||||
Mint | 15846059 | 790 days ago | IN | 0.022 ETH | 0.00105166 | ||||
Mint | 15843615 | 790 days ago | IN | 0.022 ETH | 0.00165698 | ||||
Mint With Seed | 15842512 | 790 days ago | IN | 0.074 ETH | 0.00102594 | ||||
Mint With Seed | 15842510 | 790 days ago | IN | 0.074 ETH | 0.00118357 | ||||
Mint | 15840316 | 791 days ago | IN | 0.022 ETH | 0.00174519 |
Latest 7 internal transactions
Advanced mode:
Loading...
Loading
Contract Name:
Collection
Compiler Version
v0.8.12+commit.f00d7308
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.9; import "./ERC721.sol"; import "./utils/Base64.sol"; import "./utils/MerkleProof.sol"; import "./CollectionDescriptor.sol"; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract Collection is ERC721 { address public owner = 0xaF69610ea9ddc95883f97a6a3171d52165b69B03; // for opensea integration. doesn't do anything else. address payable public recipient; // in this instance, it will be a 0xSplit on mainnet CollectionDescriptor public descriptor; // minting time uint256 public startDate; uint256 public endDate; mapping(uint256 => bool) randomMints; // for loyal mints mapping (address => bool) public claimed; bytes32 public loyaltyRoot; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor (string memory name_, string memory symbol_, address payable recipient_, uint256 startDate_, uint256 endDate_, bytes32 root_) ERC721(name_, symbol_) { descriptor = new CollectionDescriptor(); recipient = recipient_; startDate = startDate_; endDate = endDate_; loyaltyRoot = root_; // mint #1 to UF to kickstart it. this is from the loyal mint so also set claim to true. // a random mint _createNFT(owner, block.timestamp, true); claimed[owner] = true; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); string memory name = descriptor.generateName(tokenId); string memory description = "Capsules containing visualizations of all the lives lived by simulated minds in the school of unlearning."; string memory image = generateBase64Image(tokenId); string memory attributes = generateTraits(tokenId); return string( abi.encodePacked( 'data:application/json;base64,', Base64.encode( bytes( abi.encodePacked( '{"name":"', name, '", "description":"', description, '", "image": "', 'data:image/svg+xml;base64,', image,'",', attributes, '}' ) ) ) ) ); } function generateBase64Image(uint256 tokenId) public view returns (string memory) { bytes memory img = bytes(generateImage(tokenId)); return Base64.encode(img); } /* NOTE: Calling this when the token doesn't exist will result in it being defined as a "chosen seed" because randomMint will be 0 (or false) if it's not initialized. */ function generateImage(uint256 tokenId) public view returns (string memory) { bool randomMint = randomMints[tokenId]; return descriptor.generateImage(tokenId, randomMint); } function generateTraits(uint256 tokenId) public view returns (string memory) { bool randomMint = randomMints[tokenId]; return descriptor.generateTraits(tokenId, randomMint); } /* VM Viewers: These drawing functions are used inside the browser vm to display the capsule without having to call a live network. */ // Generally used inside the browser VM to preview a capsule for seed mints function generateImageFromSeedAndAddress(uint256 _seed, address _owner) public view returns (string memory) { uint256 tokenId = uint(keccak256(abi.encodePacked(_seed, _owner))); return generateImage(tokenId); } // a forced random mint viewer, used when viewing in the browser vm after a successful random mint function generateRandomMintImageFromTokenID(uint256 tokenId) public view returns (string memory) { return descriptor.generateImage(tokenId, true); } /* PUBLIC MINT OPTIONS */ function mintWithSeed(uint256 _seed) public payable { require(msg.value >= 0.074 ether, "MORE ETH NEEDED"); // ~$100 _mint(msg.sender, _seed, false); } function mint() public payable { require(msg.value >= 0.022 ether, "MORE ETH NEEDED"); // ~$30 _mint(msg.sender, block.timestamp, true); } function loyalMint(bytes32[] calldata proof) public { loyalMintLeaf(proof, msg.sender); } // anyone can mint for someone in the merkle tree // you just need the correct proof function loyalMintLeaf(bytes32[] calldata proof, address leaf) public { // if one of addresses in the overlap set require(claimed[leaf] == false, "Already claimed"); claimed[leaf] = true; bytes32 hashedLeaf = keccak256(abi.encodePacked(leaf)); require(MerkleProof.verify(proof, loyaltyRoot, hashedLeaf), "Invalid Proof"); _mint(leaf, block.timestamp, true); // mint a random mint for loyal collector } // FOR TESTING: UNCOMMENT TO RUN TESTS // For testing, we need to able to generate a specific random capsule. /*function mintWithSeedForcedRandom(uint256 _seed) public payable { require(msg.value >= 0.074 ether, "MORE ETH NEEDED"); // $100 _mint(msg.sender, _seed, true); }*/ /* INTERNAL MINT FUNCTIONS */ function _mint(address _owner, uint256 _seed, bool _randomMint) internal { require(block.timestamp > startDate, "NOT_STARTED"); // ~ 2000 gas require(block.timestamp < endDate, "ENDED"); _createNFT(_owner, _seed, _randomMint); } function _createNFT(address _owner, uint256 _seed, bool _randomMint) internal { uint256 tokenId = uint(keccak256(abi.encodePacked(_seed, _owner))); if(_randomMint) { randomMints[tokenId] = _randomMint; } super._mint(_owner, tokenId); } // WITHDRAWING ETH function withdrawETH() public { recipient.call{value: address(this).balance}(""); // this is safe because the recipient is known } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.9; import "./interfaces/IERC721.sol"; import "./interfaces/IERC721Receiver.sol"; import "./interfaces/IERC721Metadata.sol"; import "./utils/Address.sol"; // import "../../utils/Context.sol"; import "./utils/Strings.sol"; import "./ERC165.sol"; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping (uint256 => address) private _owners; // Mapping owner address to token count mapping (address => uint256) private _balances; // Mapping from token ID to approved address mapping (uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping (address => mapping (address => bool)) private _operatorApprovals; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor (string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), "ERC721: balance query for the zero address"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require(owner != address(0), "ERC721: owner query for nonexistent token"); return owner; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ''; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require(msg.sender == owner || isApprovedForAll(owner, msg.sender), "ERC721: approve caller is not owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { require(_exists(tokenId), "ERC721: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { require(operator != msg.sender, "ERC721: approve to caller"); _operatorApprovals[msg.sender][operator] = approved; emit ApprovalForAll(msg.sender, operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom(address from, address to, uint256 tokenId) public virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(msg.sender, tokenId), "ERC721: transfer caller is not owner nor approved"); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom(address from, address to, uint256 tokenId) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory _data) public virtual override { require(_isApprovedOrOwner(msg.sender, tokenId), "ERC721: transfer caller is not owner nor approved"); _safeTransfer(from, to, tokenId, _data); } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * `_data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer(address from, address to, uint256 tokenId, bytes memory _data) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _owners[tokenId] != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { require(_exists(tokenId), "ERC721: operator query for nonexistent token"); address owner = ERC721.ownerOf(tokenId); return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender)); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint(address to, uint256 tokenId, bytes memory _data) internal virtual { _mint(to, tokenId); require(_checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); // _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); // _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _balances[owner] -= 1; delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer(address from, address to, uint256 tokenId) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own"); require(to != address(0), "ERC721: transfer to the zero address"); // _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received(address from, address to, uint256 tokenId, bytes memory _data) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(msg.sender, from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { // solhint-disable-next-line no-inline-assembly assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } // modified from ERC721 template: // removed BeforeTokenTransfer }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.11; // Renderer + SVG.sol + Utils.sol from hot-chain-svg. // Modified to fit the project. // https://github.com/w1nt3r-eth/hot-chain-svg import "./Words.sol"; import "./Definitions.sol"; contract CollectionDescriptor { Words public words; Definitions public defs; constructor() { words = new Words(); defs = new Definitions(); } function render(uint256 _tokenId, bool randomMint) internal view returns (string memory) { bytes memory hash = abi.encodePacked(bytes32(_tokenId)); return string.concat( '<svg xmlns="http://www.w3.org/2000/svg" width="300" height="300" style="background:#fff">', defs.defs(hash), craftSand(hash), cutOut(hash, randomMint), capsuleOutline(), '</svg>' ); } /* RE-USABLE SHAPES */ function sandRect(string memory y, string memory h, string memory fill, string memory opacity) internal pure returns (string memory) { return svg.rect( string.concat( svg.prop('width', '300'), svg.prop('y',y), svg.prop('height',h), svg.prop('fill',fill), svg.prop('stroke','black'), svg.prop('filter','url(#sandFilter)'), svg.prop('opacity', opacity) ) ); } /* CONSTRUCTIONS */ function craftSand(bytes memory hash) internal pure returns (string memory) { string memory sandRects = '<rect width="100%" height="100%" filter="url(#fineSandFilter)"/> '; // background/fine sand uint amount = utils.getAmount(hash); // 2 - 18 uint range = utils.getRange(hash); uint height; // = 0 uint y; // = 0 uint shift = 3; uint colour = utils.getColour(hash);// 0 - 360 uint cShift = utils.getColourShift(hash); // 0 - 255 string memory opacity = "1"; for (uint i = 1; i <= amount; i+=1) { y+=height; if(i % 2 == 0) { height = range*shift/2 >> shift; shift += 1; } opacity = "1"; if ((y+colour) % 5 == 0) { opacity = "0"; } sandRects = string.concat( sandRects, sandRect(utils.uint2str(y), utils.uint2str(height), string.concat('hsl(',utils.uint2str(colour),',70%,50%)'), opacity) ); colour+=cShift; } return sandRects; } function capsuleOutline() internal pure returns (string memory) { return string.concat( // top half of capsule svg.rect(string.concat(svg.prop('x', '111'), svg.prop('y', '50'), svg.prop('width', '78'), svg.prop('height', '150'), svg.prop('ry', '40'), svg.prop('rx', '40'), svg.prop('mask', 'url(#cutoutMask)'), svg.prop('clip-path', 'url(#clipBottom)'))), // bottom half of capsule svg.rect(string.concat(svg.prop('x', '113'), svg.prop('y', '50'), svg.prop('width', '74'), svg.prop('height', '205'), svg.prop('ry', '35'), svg.prop('rx', '50'), svg.prop('mask', 'url(#cutoutMask)'))), // crossbar of capsule svg.rect(string.concat(svg.prop('x', '111'), svg.prop('y', '150'), svg.prop('width', '78'), svg.prop('height', '4'))), // top reflection svg.rect(string.concat(svg.prop('x', '115'), svg.prop('y', '45'), svg.prop('width', '70'), svg.prop('height', '40'), svg.prop('ry', '100'), svg.prop('rx', '10'), svg.prop('fill', 'white'), svg.prop('opacity', '0.4'), svg.prop('mask', 'url(#topReflectionMask)'))), // long reflection svg.rect(string.concat(svg.prop('x', '122'), svg.prop('y', '55'), svg.prop('width', '56'), svg.prop('height', '184'), svg.prop('ry', '30'), svg.prop('rx', '30'), svg.prop('fill', 'white'), svg.prop('opacity', '0.4'))), // drop shadow svg.rect(string.concat(svg.prop('x', '115'), svg.prop('y', '180'), svg.prop('width', '70'), svg.prop('height', '70'), svg.prop('ry', '30'), svg.prop('rx', '30'), svg.prop('filter', 'url(#dropShadowFilter)'), svg.prop('clip-path', 'url(#clipShadow)'))) ); } function cutOut(bytes memory hash, bool randomMint) internal view returns (string memory) { return svg.el('g', svg.prop('mask', 'url(#cutoutMask)'), string.concat( svg.whiteRect(), words.whatIveDone(hash, randomMint) ) ); } function generateName(uint nr) public pure returns (string memory) { return string(abi.encodePacked('Capsule #', utils.substring(utils.uint2str(nr),0,8))); } function generateTraits(uint256 tokenId, bool randomMint) public view returns (string memory) { bytes memory hash = abi.encodePacked(bytes32(tokenId)); (uint256 rareCount, uint256 allCount, uint256[3][10] memory indices) = utils.getIndices(hash, randomMint); string memory nrOfWordsTrait = createTrait("Total Experiences", utils.uint2str(allCount)); string memory nrOfRareWordsTrait = createTrait("Rare Experiences", utils.uint2str(rareCount)); string memory slots; string memory typeOfMint; if(randomMint) { typeOfMint = createTrait("Type of Mint", "Random"); } else { typeOfMint = createTrait("Type of Mint", "Chosen Seed"); } for(uint i; i < 10; i+=1) { if(indices[i][0] == 1) { // slot is assigned or not string memory slotPosition = string.concat("Slot ", utils.uint2str(i)); string memory action; if(indices[i][1] == 1) { // there's a rare word there or not action = words.rareActions(indices[i][2]); } else { action = words.actions(indices[i][2]); } slots = string.concat(slots, ",", createTrait(slotPosition, action)); } } return string(abi.encodePacked( '"attributes": [', nrOfWordsTrait, ",", nrOfRareWordsTrait, ",", typeOfMint, slots, ']' )); } function createTrait(string memory traitType, string memory traitValue) internal pure returns (string memory) { return string.concat( '{"trait_type": "', traitType, '", "value": "', traitValue, '"}' ); } function generateImage(uint256 tokenId, bool randomMint) public view returns (string memory) { return render(tokenId, randomMint); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (utils/cryptography/MerkleProof.sol) // import "hardhat/console.sol"; pragma solidity ^0.8.0; /** * @dev These functions deal with verification of Merkle Trees proofs. * * The proofs can be generated using the JavaScript library * https://github.com/miguelmota/merkletreejs[merkletreejs]. * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled. * * See `test/utils/cryptography/MerkleProof.test.js` for some examples. * * WARNING: You should avoid using leaf values that are 64 bytes long prior to * hashing, or use a hash function other than keccak256 for hashing leaves. * This is because the concatenation of a sorted pair of internal nodes in * the merkle tree could be reinterpreted as a leaf value. */ library MerkleProof { /** * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree * defined by `root`. For this, a `proof` must be provided, containing * sibling hashes on the branch from the leaf to the root of the tree. Each * pair of leaves and each pair of pre-images are assumed to be sorted. */ function verify( bytes32[] memory proof, bytes32 root, bytes32 leaf ) internal view returns (bool) { return processProof(proof, leaf) == root; } /** * @dev Returns the rebuilt hash obtained by traversing a Merkle tree up * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt * hash matches the root of the tree. When processing the proof, the pairs * of leafs & pre-images are assumed to be sorted. * * _Available since v4.4._ */ function processProof(bytes32[] memory proof, bytes32 leaf) internal view returns (bytes32) { bytes32 computedHash = leaf; for (uint256 i = 0; i < proof.length; i++) { bytes32 proofElement = proof[i]; // console.logBytes32(computedHash); // console.logBytes32(proofElement); if (computedHash <= proofElement) { // Hash(current computed hash + current element of the proof) //computedHash = _efficientHash(computedHash, proofElement); computedHash = keccak256( abi.encodePacked(computedHash, proofElement) ); } else { // Hash(current element of the proof + current computed hash) // computedHash = _efficientHash(proofElement, computedHash); computedHash = keccak256( abi.encodePacked(proofElement, computedHash) ); } } return computedHash; } function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) { assembly { mstore(0x00, a) mstore(0x20, b) value := keccak256(0x00, 0x40) } } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.9; /// @title Base64 /// @author Brecht Devos - <[email protected]> /// @notice Provides a function for encoding some bytes in base64 library Base64 { string internal constant TABLE = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/'; function encode(bytes memory data) internal pure returns (string memory) { if (data.length == 0) return ''; // load the table into memory string memory table = TABLE; // multiply by 4/3 rounded up uint256 encodedLen = 4 * ((data.length + 2) / 3); // add some extra buffer at the end required for the writing string memory result = new string(encodedLen + 32); assembly { // set the actual output length mstore(result, encodedLen) // prepare the lookup table let tablePtr := add(table, 1) // input ptr let dataPtr := data let endPtr := add(dataPtr, mload(data)) // result ptr, jump over length let resultPtr := add(result, 32) // run over the input, 3 bytes at a time for {} lt(dataPtr, endPtr) {} { dataPtr := add(dataPtr, 3) // read 3 bytes let input := mload(dataPtr) // write 4 characters mstore(resultPtr, shl(248, mload(add(tablePtr, and(shr(18, input), 0x3F))))) resultPtr := add(resultPtr, 1) mstore(resultPtr, shl(248, mload(add(tablePtr, and(shr(12, input), 0x3F))))) resultPtr := add(resultPtr, 1) mstore(resultPtr, shl(248, mload(add(tablePtr, and(shr( 6, input), 0x3F))))) resultPtr := add(resultPtr, 1) mstore(resultPtr, shl(248, mload(add(tablePtr, and( input, 0x3F))))) resultPtr := add(resultPtr, 1) } // padding with '=' switch mod(mload(data), 3) case 1 { mstore(sub(resultPtr, 2), shl(240, 0x3d3d)) } case 2 { mstore(sub(resultPtr, 1), shl(248, 0x3d)) } } return result; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.9; import "./interfaces/IERC165.sol"; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.9; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received(address operator, address from, uint256 tokenId, bytes calldata data) external returns (bytes4); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.9; import "./IERC165.sol"; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom(address from, address to, uint256 tokenId) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom(address from, address to, uint256 tokenId) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom(address from, address to, uint256 tokenId, bytes calldata data) external; }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.9; import "./IERC721.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.9; /** * @dev String operations. */ library Strings { bytes16 private constant alphabet = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = alphabet[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.9; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; // solhint-disable-next-line no-inline-assembly assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); // solhint-disable-next-line avoid-low-level-calls, avoid-call-value (bool success, ) = recipient.call{ value: amount }(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain`call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue(address target, bytes memory data, uint256 value, string memory errorMessage) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.call{ value: value }(data); return _verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data, string memory errorMessage) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.staticcall(data); return _verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.delegatecall(data); return _verifyCallResult(success, returndata, errorMessage); } function _verifyCallResult(bool success, bytes memory returndata, string memory errorMessage) private pure returns(bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly // solhint-disable-next-line no-inline-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.9; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); }
//SPDX-License-Identifier: MIT pragma solidity ^0.8.11; import './svg.sol'; import './utils.sol'; contract Words { // 33 string[] public rareActions = [ 'DIVINATED CORALS', 'PLANTED RUNES', 'LED EXODUS', 'CRAFTED IRIDESCENCE', 'ACCUMULATED DUNES', 'DECIPHERED CAVES', 'STOLE GUILT', 'WROTE SAND', 'BRAIDED GEMS', 'TOUCHED LIGHTNING', 'SPARKED AWAKENING', 'TORE FEAR', 'ALIGNED COLLECTIVE', 'HACKED CONFUSION', 'STEERED WEBS', 'GUIDED MOVEMENTS', 'PROGRESSED PERCEPTION', 'ABSORBED THOUGHT', 'CONSTRUCTED EMPIRES', 'BYPASSED EGOS', 'RETRIEVED RIDDLES', 'MET FROGS', 'TURNED PHYSICS', 'SLEPT AURAS', 'FOUND SILLINESS', 'COOKED SURVEILLANCE', 'BUILT BIO-ARMOUR', 'ALLEVIATED COGNITION', 'INTENSIFIED LUCIDITY', 'PAINTED INTERBEINGS', 'DRANK CULTURES', 'EMERGENT KNOWING', 'SWEPT SUNSHINE' ]; // 62 string[] public actions = [ 'LENGTHENED PLANETS', 'BREATHED SONIC', 'BEAMED RHYTHMS', 'MERGED CONTENTION', 'DEPLOYED PUZZLES', 'RECREATED MYTHS', 'GREW ROOTS', 'UNDERSTOOD RAIN', 'REVITALISED ELECTRICITY', 'THOUGHT CRYSTAL', 'SURPRISED BEINGS', 'PLAYED INFINITELY', 'SNUGGLED DANGER', 'PINCHED MAGMA', 'JUGGLED MOMENTS', 'SPOKE WATER', 'SCULPTED SOUND', 'BEGAN BEGINNINGS', 'BECAME ECOLOGY', 'TASTED LIGHT', 'THOUGHT STORMS', 'CIRCULATED GRAVITY', 'SWAM COLOURFULLY', 'GALVANISED BASS', 'HEARTENED ROCKS', 'KINDLED EARTHSTORY', 'AWAKENED GRIMOIRE', 'INCITED ABUNDANCE', 'EVOLVED SEEDS', 'DANCED COSMIC', 'REGENERATED', 'FLIRTED FLOWERS', 'CHERISHED WINTER', 'TOYED RIVERS', 'CREATED BEAUTY', 'EMBOLDENED DUST', 'LOVED MOSS', 'DANCED WORLDS', 'WHISPERED DARKNESS', 'CODED DIVINITY', 'LAUGHED DEEPLY', 'DREAMED FUNGI', 'VENTURED DEPTHS', 'WANDERED FORESTS', 'SCULPTED SUN', 'SUBVERTED ECLIPSE', 'EMBODIED MOUNTAIN', 'EXPLORED DIVINITY', 'DEEPENED STILLNESS', 'REFLECTED STARS', 'UNITED FRIENDS', 'BEFRIENDED DARKNESS', 'FELT UNIVERSAL', 'INITIATED EARTHSTORY', 'EMBRACED ALL', 'ROAMED UNIVERSE', 'NOURISHED DEATH', 'FLOATED CLOUDS', 'MOVED EVERYBODY', 'FELT COSMIC', 'SHOOK TRAUMA', 'HEALED PAIN' ]; struct WordDetails { string lineX1; string lineX2; string lineY; string textX; string textY; string textAnchor; } function whatIveDone(bytes memory hash, bool randomMint) public view returns (string memory) { string memory wordList; uint256[3][10] memory indices; uint256 leftY = utils.getLeftY(hash); // 100 - 116 uint256 rightY = utils.getRightY(hash); // 100 - 116 uint256 diffLeft = utils.getDiffLeft(hash); // 10 - 33 uint256 diffRight = utils.getDiffRight(hash); // 10 - 33 (,, indices) = utils.getIndices(hash, randomMint); WordDetails memory details; for(uint i; i < 10; i+=1) { // 10 slots. 5 a side. // words are drawn left-right, then down. uint y; if(i % 2 == 0) { details.lineX1 = '10'; //x1 details.lineY = utils.uint2str(leftY-3); //y1, y2 details.lineX2 = '150'; //x2 details.textY = utils.uint2str(leftY); details.textX = '10'; details.textAnchor = 'start'; y = leftY; leftY += diffLeft; } else { details.lineX1 = '150'; //x1 details.lineY = utils.uint2str(rightY-3); //y1, y2 details.lineX2 = '280'; //x2 details.textY = utils.uint2str(rightY); details.textX = '290'; details.textAnchor = 'end'; y = rightY; rightY += diffRight; } if(indices[i][0] == 1) { // if the slot is assigned wordList = string.concat(wordList, singularAction(details, indices[i][1], indices[i][2], randomMint) ); } } return wordList; } function singularAction(WordDetails memory details, uint256 rarity, uint256 wordIndex, bool randomMint) public view returns (string memory) { string memory dottedProp; string memory action; if(randomMint && rarity == 1) { // if a rare word action = rareActions[wordIndex]; dottedProp = svg.prop('stroke-dasharray', '4'); } else { action = actions[wordIndex]; } return string.concat( svg.el('line', string.concat(svg.prop('x1', details.lineX1), svg.prop('y1', details.lineY), svg.prop('x2', details.lineX2), svg.prop('y2', details.lineY), svg.prop('stroke', 'black'), dottedProp)), svg.el('text', string.concat( svg.prop('text-anchor', details.textAnchor), svg.prop('x', details.textX), svg.prop('y', details.textY), svg.prop('font-family', 'Helvetica'), svg.prop('fill', 'black'), svg.prop('font-weight', 'bold'), svg.prop('font-size', '6'), svg.prop('filter', 'url(#solidTextBGFilter)')), action )); } }
//SPDX-License-Identifier: MIT pragma solidity ^0.8.11; import './svg.sol'; import './utils.sol'; contract Definitions { /*PUBLIC*/ function defs(bytes memory hash) public pure returns (string memory) { return string.concat( masks(), clipPaths(), filters(hash) ); } /*MASKS*/ function masks() internal pure returns (string memory) { return string.concat( svg.el('mask', svg.prop('id','cutoutMask'), string.concat( svg.whiteRect(), svg.rect(string.concat(svg.prop('x','118'), svg.prop('y', '55'), svg.prop('width', '64'), svg.prop('height', '108'), svg.prop('ry', '30'), svg.prop('rx', '30'))), svg.rect(string.concat(svg.prop('x','118'), svg.prop('y', '110'), svg.prop('width', '64'), svg.prop('height', '140'), svg.prop('ry', '30'), svg.prop('rx', '30'))) ) ), svg.el('mask', svg.prop('id','topReflectionMask'), string.concat( svg.whiteRect(), svg.rect(string.concat(svg.prop('x','122'), svg.prop('y', '55'), svg.prop('width', '56'), svg.prop('height', '190'), svg.prop('ry', '30'), svg.prop('rx', '30'), svg.prop('fill', 'black'))) ) ) ); } /*CLIP-PATHS*/ function clipPaths() internal pure returns (string memory) { return string.concat( svg.el('clipPath', svg.prop('id', 'clipBottom'), svg.rect(string.concat(svg.prop('height', '150'), svg.prop('width', '300'))) ), svg.el('clipPath', svg.prop('id', 'clipShadow'), string.concat( svg.rect(string.concat(svg.prop('y', '220'), svg.prop('height', '300'), svg.prop('width', '300'))), svg.rect(string.concat(svg.prop('y', '180'), svg.prop('height', '300'), svg.prop('width', '115'))), svg.rect(string.concat(svg.prop('y', '180'), svg.prop('x', '185'), svg.prop('height', '300'), svg.prop('width', '115'))) ) ) ); } /*FILTERS*/ function filters(bytes memory hash) internal pure returns (string memory) { return string.concat( sandFilter(hash), svg.filter( string.concat(svg.prop('id','dropShadowFilter'), svg.prop('height', '300'), svg.prop('width', '300'), svg.prop('y', '-25%'), svg.prop('x', '-50%')), string.concat( svg.el('feGaussianBlur', string.concat(svg.prop('in', 'SourceAlpha'), svg.prop('stdDeviation', '6'))), svg.el('feOffset', svg.prop('dy', '8')), svg.el('feComposite', string.concat(svg.prop('operator', 'out'), svg.prop('in2', 'SourceAlpha'))) ) ), fineSandFilter(hash), svg.filter( string.concat(svg.prop('id','solidTextBGFilter')), string.concat( svg.el('feFlood', string.concat(svg.prop('flood-color', 'white'), svg.prop('result', 'bg'))), svg.el('feMerge', '', string.concat( svg.el('feMergeNode', svg.prop('in', 'bg')), svg.el('feMergeNode', svg.prop('in', 'SourceGraphic')) ) ) ) ) ); } /*INTERNALS*/ function sandFilter(bytes memory hash) internal pure returns (string memory) { uint256 seed = utils.getSandSeed(hash); uint256 scale = utils.getSandScale(hash); uint256 octaves = utils.getSandOctaves(hash); return svg.filter( string.concat(svg.prop('id','sandFilter'), svg.prop('height', '800%'), svg.prop('y', '-250%')), string.concat( svg.el('feTurbulence', string.concat(svg.prop('baseFrequency', '0.01'), svg.prop('numOctaves', utils.uint2str(octaves)), svg.prop('seed', utils.uint2str(seed)), svg.prop('result', 'turbs'))), svg.el('feDisplacementMap', string.concat(svg.prop('in2', 'turbs'), svg.prop('in', 'SourceGraphic'), svg.prop('scale', utils.uint2str(scale)), svg.prop('xChannelSelector', 'R'), svg.prop('yChannelSelector', 'G'))) ) ); } function fineSandFilter(bytes memory hash) internal pure returns (string memory) { string memory redOffset; string memory greenOffset; string memory blueOffset; { redOffset = getColourOffset(hash, 0); greenOffset = getColourOffset(hash, 1); blueOffset = getColourOffset(hash, 2); } uint256 seed = utils.getFineSandSeed(hash); uint256 octaves = utils.getFineSandOctaves(hash); return svg.filter( svg.prop('id','fineSandFilter'), string.concat( fineSandfeTurbulence(seed, octaves), svg.el('feComponentTransfer', '', string.concat( svg.el('feFuncR', string.concat(svg.prop('type', 'gamma'), svg.prop('offset', redOffset))), svg.el('feFuncG', string.concat(svg.prop('type', 'gamma'), svg.prop('offset', greenOffset))), svg.el('feFuncB', string.concat(svg.prop('type', 'gamma'), svg.prop('offset', blueOffset))), svg.el('feFuncA', string.concat(svg.prop('type', 'linear'), svg.prop('intercept', '1'))) )) ) ); } function fineSandfeTurbulence(uint256 seed, uint256 octaves) internal pure returns (string memory) { return svg.el('feTurbulence', string.concat(svg.prop('baseFrequency', '0.01'), svg.prop('numOctaves', utils.uint2str(octaves)), svg.prop('seed', utils.uint2str(seed)), svg.prop('result', 'turbs'))); } function getColourOffset(bytes memory hash, uint256 offsetIndex) internal pure returns (string memory) { uint256 shift = utils.getColourOffsetShift(hash, offsetIndex); // 0 or 1. Positive or Negative uint256 change = utils.getColourOffsetChange(hash, offsetIndex); // 0 - 99 string memory sign = ""; if(shift == 1) { sign = "-"; } return string(abi.encodePacked( sign, utils.generateDecimalString(change,1) )); } }
//SPDX-License-Identifier: MIT pragma solidity ^0.8.12; // Core SVG utilitiy library which helps us construct // onchain SVG's with a simple, web-like API. // modified from original to take away functions that I'm not using library svg { /* MAIN ELEMENTS */ function rect(string memory _props, string memory _children) internal pure returns (string memory) { return el('rect', _props, _children); } function rect(string memory _props) internal pure returns (string memory) { return el('rect', _props); } function filter(string memory _props, string memory _children) internal pure returns (string memory) { return el('filter', _props, _children); } /* COMMON */ // A generic element, can be used to construct any SVG (or HTML) element function el( string memory _tag, string memory _props, string memory _children ) internal pure returns (string memory) { return string.concat( '<', _tag, ' ', _props, '>', _children, '</', _tag, '>' ); } // A generic element, can be used to construct any SVG (or HTML) element without children function el( string memory _tag, string memory _props ) internal pure returns (string memory) { return string.concat( '<', _tag, ' ', _props, '/>' ); } // an SVG attribute function prop(string memory _key, string memory _val) internal pure returns (string memory) { return string.concat(_key, '=', '"', _val, '" '); } function whiteRect() internal pure returns (string memory) { return rect( string.concat( prop('width','100%'), prop('height', '100%'), prop('fill', 'white') ) ); } }
//SPDX-License-Identifier: MIT pragma solidity ^0.8.12; // Core utils used extensively to format CSS and numbers. // modified from original to take away functions that I'm not using // also includes the random number parser library utils { // converts an unsigned integer to a string function uint2str(uint256 _i) internal pure returns (string memory _uintAsString) { if (_i == 0) { return '0'; } uint256 j = _i; uint256 len; while (j != 0) { len++; j /= 10; } bytes memory bstr = new bytes(len); uint256 k = len; while (_i != 0) { k = k - 1; uint8 temp = (48 + uint8(_i - (_i / 10) * 10)); bytes1 b1 = bytes1(temp); bstr[k] = b1; _i /= 10; } return string(bstr); } // helper function for generation // from: https://github.com/GNSPS/solidity-bytes-utils/blob/master/contracts/BytesLib.sol function toUint8(bytes memory _bytes, uint256 _start) internal pure returns (uint8) { require(_start + 1 >= _start, "toUint8_overflow"); require(_bytes.length >= _start + 1 , "toUint8_outOfBounds"); uint8 tempUint; assembly { tempUint := mload(add(add(_bytes, 0x1), _start)) } return tempUint; } // from: https://ethereum.stackexchange.com/questions/31457/substring-in-solidity/31470 function substring(string memory str, uint startIndex, uint endIndex) internal pure returns (string memory) { bytes memory strBytes = bytes(str); bytes memory result = new bytes(endIndex-startIndex); for(uint i = startIndex; i < endIndex; i++) { result[i-startIndex] = strBytes[i]; } return string(result); } function generateDecimalString(uint nr, uint decimals) internal pure returns (string memory) { if(decimals == 1) { return string(abi.encodePacked('0.', uint2str(nr))); } if(decimals == 2) { return string(abi.encodePacked('0.0', uint2str(nr))); } if(decimals == 3) { return string(abi.encodePacked('0.00', uint2str(nr))); } if(decimals == 4) { return string(abi.encodePacked('0.000', uint2str(nr))); } } // entropy carving // extrapolated into utils file in order to re-use between drawing + trait generation // 19 random variables function getAmount(bytes memory hash) internal pure returns (uint256) { return 2+uint256(toUint8(hash, 0))/16; } // 2 - 18 function getRange(bytes memory hash) internal pure returns (uint256) { return 220 + uint256(toUint8(hash, 1))/4; } // 180 - 240 function getColour(bytes memory hash) internal pure returns (uint256) { return uint256(toUint8(hash, 2))*360/256; } // 0 - 360 function getColourShift(bytes memory hash) internal pure returns (uint256) { return uint256(toUint8(hash, 3)); } // 0 - 255 function getSandSeed(bytes memory hash) internal pure returns (uint256) { return uint256(toUint8(hash, 4)); } function getSandScale(bytes memory hash) internal pure returns (uint256) { return 1 + uint256(toUint8(hash, 5))/8; } function getSandOctaves(bytes memory hash) internal pure returns (uint256) {return 1 + uint256(toUint8(hash, 6))/64; } function getFineSandSeed(bytes memory hash) internal pure returns (uint256) {return uint256(toUint8(hash, 7)); } function getFineSandOctaves(bytes memory hash) internal pure returns (uint256) {return 1 + uint256(toUint8(hash, 8))/64; } function getColourOffsetShift(bytes memory hash, uint256 offsetIndex) internal pure returns (uint256) { if(offsetIndex == 0 ) { return uint256(toUint8(hash, 9))/128; } // red if(offsetIndex == 1 ) { return uint256(toUint8(hash, 10))/128; } // green if(offsetIndex == 2 ) { return uint256(toUint8(hash, 11))/128; } // blue } function getColourOffsetChange(bytes memory hash, uint256 offsetIndex) internal pure returns (uint256) { if(offsetIndex == 0 ) { return uint256(toUint8(hash, 12))*100/256; } // red if(offsetIndex == 1 ) { return uint256(toUint8(hash, 13))*100/256; } // green if(offsetIndex == 2 ) { return uint256(toUint8(hash, 14))*100/256; } // blue } function getLeftY(bytes memory hash) internal pure returns (uint256) {return 100+uint256(toUint8(hash, 15))/16; } function getRightY(bytes memory hash) internal pure returns (uint256) {return 100+uint256(toUint8(hash, 16))/16; } function getDiffLeft(bytes memory hash) internal pure returns (uint256) {return 10+uint256(toUint8(hash, 17))/16; } function getDiffRight(bytes memory hash) internal pure returns (uint256) {return 10+uint256(toUint8(hash, 18))/16; } function getIndices(bytes memory hash, bool randomMint) internal pure returns (uint256 _rareCount, uint256 _allCount, uint256[3][10] memory) { uint256[3][10] memory indices; // solidity's array assignents are reversed. // 0 -> assigned slot or not (0 or 1) // 1 -> rare word or not (0 or 1) // 2 -> index in word list (default list (0-52) or rare list (0-31)) uint256 allCount; uint256 rareCount; uint leftY = getLeftY(hash); uint rightY = getRightY(hash); uint diffLeft = getDiffLeft(hash); uint diffRight = getDiffRight(hash); for(uint i = 0; i < 10; i+=1) { uint y; if(i % 2 == 0) { y = leftY; leftY += diffLeft; } else { y = rightY; rightY += diffRight; } if((y+i) % 4 == 0) { // 1 in 4 chance for an experience to be shown uint256 entropy = uint256(toUint8(hash, 19+i)); uint256[3] memory IS; IS[0] = 1; // assigned slot (0 or 1) // default for IS[0] is 0, so don't have to assign it if(randomMint && (y+i+entropy) % 3 == 0) { // if its a random mint, the action has 1/3 chance of being rare IS[1] = 1; // it's a rare word/action IS[2] = entropy*33/256; // index in rare actions list rareCount+=1; } else { // don't have to assign IS[1] because it's 0 on default IS[2] = entropy*62/256; // index in actions list } indices[i] = IS; allCount+=1; } } return (rareCount, allCount, indices); } }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"},{"internalType":"address payable","name":"recipient_","type":"address"},{"internalType":"uint256","name":"startDate_","type":"uint256"},{"internalType":"uint256","name":"endDate_","type":"uint256"},{"internalType":"bytes32","name":"root_","type":"bytes32"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"claimed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"descriptor","outputs":[{"internalType":"contract CollectionDescriptor","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"endDate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"generateBase64Image","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"generateImage","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_seed","type":"uint256"},{"internalType":"address","name":"_owner","type":"address"}],"name":"generateImageFromSeedAndAddress","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"generateRandomMintImageFromTokenID","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"generateTraits","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"loyalMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"},{"internalType":"address","name":"leaf","type":"address"}],"name":"loyalMintLeaf","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"loyaltyRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_seed","type":"uint256"}],"name":"mintWithSeed","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"recipient","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startDate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawETH","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
608060405273af69610ea9ddc95883f97a6a3171d52165b69b03600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055503480156200006657600080fd5b50604051620101e9380380620101e983398181016040528101906200008c919062000836565b85858160009080519060200190620000a692919062000500565b508060019080519060200190620000bf92919062000500565b505050604051620000d09062000591565b604051809103906000f080158015620000ed573d6000803e3d6000fd5b50600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555083600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508260098190555081600a8190555080600d81905550620001ba600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff164260016200024060201b60201c565b6001600c6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050505050505062000baf565b600082846040516020016200025792919062000999565b6040516020818303038152906040528051906020012060001c90508115620002a55781600b600083815260200190815260200160002060006101000a81548160ff0219169083151502179055505b620002bc8482620002c260201b6200170f1760201c565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000335576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200032c9062000a2a565b60405180910390fd5b62000346816200049460201b60201c565b1562000389576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003809062000a9c565b60405180910390fd5b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254620003db919062000aed565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b8280546200050e9062000b79565b90600052602060002090601f0160209004810192826200053257600085556200057e565b82601f106200054d57805160ff19168380011785556200057e565b828001600101855582156200057e579182015b828111156200057d57825182559160200191906001019062000560565b5b5090506200058d91906200059f565b5090565b61b85c806200498d83390190565b5b80821115620005ba576000816000905550600101620005a0565b5090565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6200062782620005dc565b810181811067ffffffffffffffff82111715620006495762000648620005ed565b5b80604052505050565b60006200065e620005be565b90506200066c82826200061c565b919050565b600067ffffffffffffffff8211156200068f576200068e620005ed565b5b6200069a82620005dc565b9050602081019050919050565b60005b83811015620006c7578082015181840152602081019050620006aa565b83811115620006d7576000848401525b50505050565b6000620006f4620006ee8462000671565b62000652565b905082815260208101848484011115620007135762000712620005d7565b5b62000720848285620006a7565b509392505050565b600082601f83011262000740576200073f620005d2565b5b815162000752848260208601620006dd565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000788826200075b565b9050919050565b6200079a816200077b565b8114620007a657600080fd5b50565b600081519050620007ba816200078f565b92915050565b6000819050919050565b620007d581620007c0565b8114620007e157600080fd5b50565b600081519050620007f581620007ca565b92915050565b6000819050919050565b6200081081620007fb565b81146200081c57600080fd5b50565b600081519050620008308162000805565b92915050565b60008060008060008060c08789031215620008565762000855620005c8565b5b600087015167ffffffffffffffff811115620008775762000876620005cd565b5b6200088589828a0162000728565b965050602087015167ffffffffffffffff811115620008a957620008a8620005cd565b5b620008b789828a0162000728565b9550506040620008ca89828a01620007a9565b9450506060620008dd89828a01620007e4565b9350506080620008f089828a01620007e4565b92505060a06200090389828a016200081f565b9150509295509295509295565b6000819050919050565b6200092f6200092982620007c0565b62000910565b82525050565b600062000942826200075b565b9050919050565b60008160601b9050919050565b6000620009638262000949565b9050919050565b6000620009778262000956565b9050919050565b620009936200098d8262000935565b6200096a565b82525050565b6000620009a782856200091a565b602082019150620009b982846200097e565b6014820191508190509392505050565b600082825260208201905092915050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b600062000a12602083620009c9565b915062000a1f82620009da565b602082019050919050565b6000602082019050818103600083015262000a458162000a03565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b600062000a84601c83620009c9565b915062000a918262000a4c565b602082019050919050565b6000602082019050818103600083015262000ab78162000a75565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000afa82620007c0565b915062000b0783620007c0565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000b3f5762000b3e62000abe565b5b828201905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000b9257607f821691505b6020821081141562000ba95762000ba862000b4a565b5b50919050565b613dce8062000bbf6000396000f3fe6080604052600436106101cd5760003560e01c80636d9ec494116100f7578063a48b3b8f11610095578063c87b56dd11610064578063c87b56dd14610694578063c884ef83146106d1578063e086e5ec1461070e578063e985e9c514610725576101cd565b8063a48b3b8f146105da578063aba048b414610617578063b88d4fde14610640578063c24a0f8b14610669576101cd565b80638da5cb5b116100d15780638da5cb5b1461051e5780638f9fe2ad1461054957806395d89b4114610586578063a22cb465146105b1576101cd565b80636d9ec4941461047957806370a08231146104a457806379b92f27146104e1576101cd565b80631c8fb73f1161016f57806342842e0e1161013e57806342842e0e146103ab5780634b44d812146103d45780636352211e1461041157806366d003ac1461044e576101cd565b80631c8fb73f1461031257806323b872dd1461032e578063303e74df14610357578063423d793914610382576101cd565b8063095ea7b3116101ab578063095ea7b3146102775780630b97bc86146102a05780630cd2356b146102cb5780631249c58b14610308576101cd565b806301ffc9a7146101d257806306fdde031461020f578063081812fc1461023a575b600080fd5b3480156101de57600080fd5b506101f960048036038101906101f49190612344565b610762565b604051610206919061238c565b60405180910390f35b34801561021b57600080fd5b50610224610844565b6040516102319190612440565b60405180910390f35b34801561024657600080fd5b50610261600480360381019061025c9190612498565b6108d6565b60405161026e9190612506565b60405180910390f35b34801561028357600080fd5b5061029e6004803603810190610299919061254d565b61095b565b005b3480156102ac57600080fd5b506102b5610a65565b6040516102c2919061259c565b60405180910390f35b3480156102d757600080fd5b506102f260048036038101906102ed9190612498565b610a6b565b6040516102ff9190612440565b60405180910390f35b610310610b18565b005b61032c60048036038101906103279190612498565b610b70565b005b34801561033a57600080fd5b50610355600480360381019061035091906125b7565b610bca565b005b34801561036357600080fd5b5061036c610c23565b6040516103799190612669565b60405180910390f35b34801561038e57600080fd5b506103a960048036038101906103a491906126e9565b610c49565b005b3480156103b757600080fd5b506103d260048036038101906103cd91906125b7565b610dfe565b005b3480156103e057600080fd5b506103fb60048036038101906103f69190612498565b610e1e565b6040516104089190612440565b60405180910390f35b34801561041d57600080fd5b5061043860048036038101906104339190612498565b610ef0565b6040516104459190612506565b60405180910390f35b34801561045a57600080fd5b50610463610fa2565b604051610470919061276a565b60405180910390f35b34801561048557600080fd5b5061048e610fc8565b60405161049b919061279e565b60405180910390f35b3480156104b057600080fd5b506104cb60048036038101906104c691906127b9565b610fce565b6040516104d8919061259c565b60405180910390f35b3480156104ed57600080fd5b5061050860048036038101906105039190612498565b611086565b6040516105159190612440565b60405180910390f35b34801561052a57600080fd5b50610533611158565b6040516105409190612506565b60405180910390f35b34801561055557600080fd5b50610570600480360381019061056b91906127e6565b61117e565b60405161057d9190612440565b60405180910390f35b34801561059257600080fd5b5061059b6111c2565b6040516105a89190612440565b60405180910390f35b3480156105bd57600080fd5b506105d860048036038101906105d39190612852565b611254565b005b3480156105e657600080fd5b5061060160048036038101906105fc9190612498565b6113c0565b60405161060e9190612440565b60405180910390f35b34801561062357600080fd5b5061063e60048036038101906106399190612892565b6113e0565b005b34801561064c57600080fd5b5061066760048036038101906106629190612a0f565b6113ef565b005b34801561067557600080fd5b5061067e61144a565b60405161068b919061259c565b60405180910390f35b3480156106a057600080fd5b506106bb60048036038101906106b69190612498565b611450565b6040516106c89190612440565b60405180910390f35b3480156106dd57600080fd5b506106f860048036038101906106f391906127b9565b6115ce565b604051610705919061238c565b60405180910390f35b34801561071a57600080fd5b506107236115ee565b005b34801561073157600080fd5b5061074c60048036038101906107479190612a92565b61167b565b604051610759919061238c565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061082d57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061083d575061083c826118d1565b5b9050919050565b60606000805461085390612b01565b80601f016020809104026020016040519081016040528092919081815260200182805461087f90612b01565b80156108cc5780601f106108a1576101008083540402835291602001916108cc565b820191906000526020600020905b8154815290600101906020018083116108af57829003601f168201915b5050505050905090565b60006108e18261193b565b610920576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161091790612ba5565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061096682610ef0565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156109d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109ce90612c37565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161480610a175750610a16813361167b565b5b610a56576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a4d90612cc9565b60405180910390fd5b610a6083836119a7565b505050565b60095481565b6060600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663effaaf6a8360016040518363ffffffff1660e01b8152600401610acb929190612ce9565b600060405180830381865afa158015610ae8573d6000803e3d6000fd5b505050506040513d6000823e3d601f19601f82011682018060405250810190610b119190612db3565b9050919050565b664e28e2290f0000341015610b62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5990612e48565b60405180910390fd5b610b6e33426001611a60565b565b670106e69ba1610000341015610bbb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bb290612e48565b60405180910390fd5b610bc733826000611a60565b50565b610bd43382611af8565b610c13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c0a90612eda565b60405180910390fd5b610c1e838383611bd6565b505050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60001515600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151514610cdc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cd390612f46565b60405180910390fd5b6001600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600081604051602001610d479190612fae565b604051602081830303815290604052805190602001209050610dad848480806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600d5483611e27565b610dec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610de390613015565b60405180910390fd5b610df882426001611a60565b50505050565b610e19838383604051806020016040528060008152506113ef565b505050565b60606000600b600084815260200190815260200160002060009054906101000a900460ff169050600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663effaaf6a84836040518363ffffffff1660e01b8152600401610ea2929190612ce9565b600060405180830381865afa158015610ebf573d6000803e3d6000fd5b505050506040513d6000823e3d601f19601f82011682018060405250810190610ee89190612db3565b915050919050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610f99576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f90906130a7565b60405180910390fd5b80915050919050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600d5481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561103f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103690613139565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60606000600b600084815260200190815260200160002060009054906101000a900460ff169050600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166337ee03ec84836040518363ffffffff1660e01b815260040161110a929190612ce9565b600060405180830381865afa158015611127573d6000803e3d6000fd5b505050506040513d6000823e3d601f19601f820116820180604052508101906111509190612db3565b915050919050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60606000838360405160200161119592919061317a565b6040516020818303038152906040528051906020012060001c90506111b981610e1e565b91505092915050565b6060600180546111d190612b01565b80601f01602080910402602001604051908101604052809291908181526020018280546111fd90612b01565b801561124a5780601f1061121f5761010080835404028352916020019161124a565b820191906000526020600020905b81548152906001019060200180831161122d57829003601f168201915b5050505050905090565b3373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156112c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ba906131f2565b60405180910390fd5b80600560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516113b4919061238c565b60405180910390a35050565b606060006113cd83610e1e565b90506113d881611e3e565b915050919050565b6113eb828233610c49565b5050565b6113f93383611af8565b611438576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142f90612eda565b60405180910390fd5b61144484848484611fc3565b50505050565b600a5481565b606061145b8261193b565b61149a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161149190613284565b60405180910390fd5b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663192a0a1f846040518263ffffffff1660e01b81526004016114f7919061259c565b600060405180830381865afa158015611514573d6000803e3d6000fd5b505050506040513d6000823e3d601f19601f8201168201806040525081019061153d9190612db3565b905060006040518060a0016040528060698152602001613d306069913990506000611567856113c0565b9050600061157486611086565b90506115a48484848460405160200161159094939291906134a8565b604051602081830303815290604052611e3e565b6040516020016115b49190613574565b604051602081830303815290604052945050505050919050565b600c6020528060005260406000206000915054906101000a900460ff1681565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051611634906135c7565b60006040518083038185875af1925050503d8060008114611671576040519150601f19603f3d011682016040523d82523d6000602084013e611676565b606091505b505050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561177f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161177690613628565b60405180910390fd5b6117888161193b565b156117c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117bf90613694565b60405180910390fd5b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461181891906136e3565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611a1a83610ef0565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6009544211611aa4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a9b90613785565b60405180910390fd5b600a544210611ae8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611adf906137f1565b60405180910390fd5b611af383838361201f565b505050565b6000611b038261193b565b611b42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b3990613883565b60405180910390fd5b6000611b4d83610ef0565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611bbc57508373ffffffffffffffffffffffffffffffffffffffff16611ba4846108d6565b73ffffffffffffffffffffffffffffffffffffffff16145b80611bcd5750611bcc818561167b565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611bf682610ef0565b73ffffffffffffffffffffffffffffffffffffffff1614611c4c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c4390613915565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611cbc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cb3906139a7565b60405180910390fd5b611cc76000826119a7565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611d1791906139c7565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611d6e91906136e3565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b600082611e348584612091565b1490509392505050565b6060600082511415611e6157604051806020016040528060008152509050611fbe565b6000604051806060016040528060408152602001613cf06040913990506000600360028551611e9091906136e3565b611e9a9190613a2a565b6004611ea69190613a5b565b90506000602082611eb791906136e3565b67ffffffffffffffff811115611ed057611ecf6128e4565b5b6040519080825280601f01601f191660200182016040528015611f025781602001600182028036833780820191505090505b509050818152600183018586518101602084015b81831015611f7d576003830192508251603f8160121c1685015160f81b8252600182019150603f81600c1c1685015160f81b8252600182019150603f8160061c1685015160f81b8252600182019150603f811685015160f81b825260018201915050611f16565b600389510660018114611f975760028114611fa757611fb2565b613d3d60f01b6002830352611fb2565b603d60f81b60018303525b50505050508093505050505b919050565b611fce848484611bd6565b611fda84848484612144565b612019576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161201090613b27565b60405180910390fd5b50505050565b6000828460405160200161203492919061317a565b6040516020818303038152906040528051906020012060001c905081156120815781600b600083815260200190815260200160002060006101000a81548160ff0219169083151502179055505b61208b848261170f565b50505050565b60008082905060005b84518110156121395760008582815181106120b8576120b7613b47565b5b602002602001015190508083116120f95782816040516020016120dc929190613b97565b604051602081830303815290604052805190602001209250612125565b808360405160200161210c929190613b97565b6040516020818303038152906040528051906020012092505b50808061213190613bc3565b91505061209a565b508091505092915050565b60006121658473ffffffffffffffffffffffffffffffffffffffff166122c5565b156122b8578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02338786866040518563ffffffff1660e01b81526004016121a99493929190613c61565b6020604051808303816000875af19250505080156121e557506040513d601f19601f820116820180604052508101906121e29190613cc2565b60015b612268573d8060008114612215576040519150601f19603f3d011682016040523d82523d6000602084013e61221a565b606091505b50600081511415612260576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161225790613b27565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506122bd565b600190505b949350505050565b600080823b905060008111915050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612321816122ec565b811461232c57600080fd5b50565b60008135905061233e81612318565b92915050565b60006020828403121561235a576123596122e2565b5b60006123688482850161232f565b91505092915050565b60008115159050919050565b61238681612371565b82525050565b60006020820190506123a1600083018461237d565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156123e15780820151818401526020810190506123c6565b838111156123f0576000848401525b50505050565b6000601f19601f8301169050919050565b6000612412826123a7565b61241c81856123b2565b935061242c8185602086016123c3565b612435816123f6565b840191505092915050565b6000602082019050818103600083015261245a8184612407565b905092915050565b6000819050919050565b61247581612462565b811461248057600080fd5b50565b6000813590506124928161246c565b92915050565b6000602082840312156124ae576124ad6122e2565b5b60006124bc84828501612483565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006124f0826124c5565b9050919050565b612500816124e5565b82525050565b600060208201905061251b60008301846124f7565b92915050565b61252a816124e5565b811461253557600080fd5b50565b60008135905061254781612521565b92915050565b60008060408385031215612564576125636122e2565b5b600061257285828601612538565b925050602061258385828601612483565b9150509250929050565b61259681612462565b82525050565b60006020820190506125b1600083018461258d565b92915050565b6000806000606084860312156125d0576125cf6122e2565b5b60006125de86828701612538565b93505060206125ef86828701612538565b925050604061260086828701612483565b9150509250925092565b6000819050919050565b600061262f61262a612625846124c5565b61260a565b6124c5565b9050919050565b600061264182612614565b9050919050565b600061265382612636565b9050919050565b61266381612648565b82525050565b600060208201905061267e600083018461265a565b92915050565b600080fd5b600080fd5b600080fd5b60008083601f8401126126a9576126a8612684565b5b8235905067ffffffffffffffff8111156126c6576126c5612689565b5b6020830191508360208202830111156126e2576126e161268e565b5b9250929050565b600080600060408486031215612702576127016122e2565b5b600084013567ffffffffffffffff8111156127205761271f6122e7565b5b61272c86828701612693565b9350935050602061273f86828701612538565b9150509250925092565b6000612754826124c5565b9050919050565b61276481612749565b82525050565b600060208201905061277f600083018461275b565b92915050565b6000819050919050565b61279881612785565b82525050565b60006020820190506127b3600083018461278f565b92915050565b6000602082840312156127cf576127ce6122e2565b5b60006127dd84828501612538565b91505092915050565b600080604083850312156127fd576127fc6122e2565b5b600061280b85828601612483565b925050602061281c85828601612538565b9150509250929050565b61282f81612371565b811461283a57600080fd5b50565b60008135905061284c81612826565b92915050565b60008060408385031215612869576128686122e2565b5b600061287785828601612538565b92505060206128888582860161283d565b9150509250929050565b600080602083850312156128a9576128a86122e2565b5b600083013567ffffffffffffffff8111156128c7576128c66122e7565b5b6128d385828601612693565b92509250509250929050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61291c826123f6565b810181811067ffffffffffffffff8211171561293b5761293a6128e4565b5b80604052505050565b600061294e6122d8565b905061295a8282612913565b919050565b600067ffffffffffffffff82111561297a576129796128e4565b5b612983826123f6565b9050602081019050919050565b82818337600083830152505050565b60006129b26129ad8461295f565b612944565b9050828152602081018484840111156129ce576129cd6128df565b5b6129d9848285612990565b509392505050565b600082601f8301126129f6576129f5612684565b5b8135612a0684826020860161299f565b91505092915050565b60008060008060808587031215612a2957612a286122e2565b5b6000612a3787828801612538565b9450506020612a4887828801612538565b9350506040612a5987828801612483565b925050606085013567ffffffffffffffff811115612a7a57612a796122e7565b5b612a86878288016129e1565b91505092959194509250565b60008060408385031215612aa957612aa86122e2565b5b6000612ab785828601612538565b9250506020612ac885828601612538565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612b1957607f821691505b60208210811415612b2d57612b2c612ad2565b5b50919050565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000612b8f602c836123b2565b9150612b9a82612b33565b604082019050919050565b60006020820190508181036000830152612bbe81612b82565b9050919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000612c216021836123b2565b9150612c2c82612bc5565b604082019050919050565b60006020820190508181036000830152612c5081612c14565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b6000612cb36038836123b2565b9150612cbe82612c57565b604082019050919050565b60006020820190508181036000830152612ce281612ca6565b9050919050565b6000604082019050612cfe600083018561258d565b612d0b602083018461237d565b9392505050565b600067ffffffffffffffff821115612d2d57612d2c6128e4565b5b612d36826123f6565b9050602081019050919050565b6000612d56612d5184612d12565b612944565b905082815260208101848484011115612d7257612d716128df565b5b612d7d8482856123c3565b509392505050565b600082601f830112612d9a57612d99612684565b5b8151612daa848260208601612d43565b91505092915050565b600060208284031215612dc957612dc86122e2565b5b600082015167ffffffffffffffff811115612de757612de66122e7565b5b612df384828501612d85565b91505092915050565b7f4d4f524520455448204e45454445440000000000000000000000000000000000600082015250565b6000612e32600f836123b2565b9150612e3d82612dfc565b602082019050919050565b60006020820190508181036000830152612e6181612e25565b9050919050565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b6000612ec46031836123b2565b9150612ecf82612e68565b604082019050919050565b60006020820190508181036000830152612ef381612eb7565b9050919050565b7f416c726561647920636c61696d65640000000000000000000000000000000000600082015250565b6000612f30600f836123b2565b9150612f3b82612efa565b602082019050919050565b60006020820190508181036000830152612f5f81612f23565b9050919050565b60008160601b9050919050565b6000612f7e82612f66565b9050919050565b6000612f9082612f73565b9050919050565b612fa8612fa3826124e5565b612f85565b82525050565b6000612fba8284612f97565b60148201915081905092915050565b7f496e76616c69642050726f6f6600000000000000000000000000000000000000600082015250565b6000612fff600d836123b2565b915061300a82612fc9565b602082019050919050565b6000602082019050818103600083015261302e81612ff2565b9050919050565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b60006130916029836123b2565b915061309c82613035565b604082019050919050565b600060208201905081810360008301526130c081613084565b9050919050565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b6000613123602a836123b2565b915061312e826130c7565b604082019050919050565b6000602082019050818103600083015261315281613116565b9050919050565b6000819050919050565b61317461316f82612462565b613159565b82525050565b60006131868285613163565b6020820191506131968284612f97565b6014820191508190509392505050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b60006131dc6019836123b2565b91506131e7826131a6565b602082019050919050565b6000602082019050818103600083015261320b816131cf565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b600061326e602f836123b2565b915061327982613212565b604082019050919050565b6000602082019050818103600083015261329d81613261565b9050919050565b600081905092915050565b7f7b226e616d65223a220000000000000000000000000000000000000000000000600082015250565b60006132e56009836132a4565b91506132f0826132af565b600982019050919050565b6000613306826123a7565b61331081856132a4565b93506133208185602086016123c3565b80840191505092915050565b7f222c20226465736372697074696f6e223a220000000000000000000000000000600082015250565b60006133626012836132a4565b915061336d8261332c565b601282019050919050565b7f222c2022696d616765223a202200000000000000000000000000000000000000600082015250565b60006133ae600d836132a4565b91506133b982613378565b600d82019050919050565b7f646174613a696d6167652f7376672b786d6c3b6261736536342c000000000000600082015250565b60006133fa601a836132a4565b9150613405826133c4565b601a82019050919050565b7f222c000000000000000000000000000000000000000000000000000000000000600082015250565b60006134466002836132a4565b915061345182613410565b600282019050919050565b7f7d00000000000000000000000000000000000000000000000000000000000000600082015250565b60006134926001836132a4565b915061349d8261345c565b600182019050919050565b60006134b3826132d8565b91506134bf82876132fb565b91506134ca82613355565b91506134d682866132fb565b91506134e1826133a1565b91506134ec826133ed565b91506134f882856132fb565b915061350382613439565b915061350f82846132fb565b915061351a82613485565b915081905095945050505050565b7f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c000000600082015250565b600061355e601d836132a4565b915061356982613528565b601d82019050919050565b600061357f82613551565b915061358b82846132fb565b915081905092915050565b600081905092915050565b50565b60006135b1600083613596565b91506135bc826135a1565b600082019050919050565b60006135d2826135a4565b9150819050919050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b60006136126020836123b2565b915061361d826135dc565b602082019050919050565b6000602082019050818103600083015261364181613605565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b600061367e601c836123b2565b915061368982613648565b602082019050919050565b600060208201905081810360008301526136ad81613671565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006136ee82612462565b91506136f983612462565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561372e5761372d6136b4565b5b828201905092915050565b7f4e4f545f53544152544544000000000000000000000000000000000000000000600082015250565b600061376f600b836123b2565b915061377a82613739565b602082019050919050565b6000602082019050818103600083015261379e81613762565b9050919050565b7f454e444544000000000000000000000000000000000000000000000000000000600082015250565b60006137db6005836123b2565b91506137e6826137a5565b602082019050919050565b6000602082019050818103600083015261380a816137ce565b9050919050565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b600061386d602c836123b2565b915061387882613811565b604082019050919050565b6000602082019050818103600083015261389c81613860565b9050919050565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b60006138ff6029836123b2565b915061390a826138a3565b604082019050919050565b6000602082019050818103600083015261392e816138f2565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006139916024836123b2565b915061399c82613935565b604082019050919050565b600060208201905081810360008301526139c081613984565b9050919050565b60006139d282612462565b91506139dd83612462565b9250828210156139f0576139ef6136b4565b5b828203905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613a3582612462565b9150613a4083612462565b925082613a5057613a4f6139fb565b5b828204905092915050565b6000613a6682612462565b9150613a7183612462565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613aaa57613aa96136b4565b5b828202905092915050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b6000613b116032836123b2565b9150613b1c82613ab5565b604082019050919050565b60006020820190508181036000830152613b4081613b04565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000819050919050565b613b91613b8c82612785565b613b76565b82525050565b6000613ba38285613b80565b602082019150613bb38284613b80565b6020820191508190509392505050565b6000613bce82612462565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613c0157613c006136b4565b5b600182019050919050565b600081519050919050565b600082825260208201905092915050565b6000613c3382613c0c565b613c3d8185613c17565b9350613c4d8185602086016123c3565b613c56816123f6565b840191505092915050565b6000608082019050613c7660008301876124f7565b613c8360208301866124f7565b613c90604083018561258d565b8181036060830152613ca28184613c28565b905095945050505050565b600081519050613cbc81612318565b92915050565b600060208284031215613cd857613cd76122e2565b5b6000613ce684828501613cad565b9150509291505056fe4142434445464748494a4b4c4d4e4f505152535455565758595a6162636465666768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2f43617073756c657320636f6e7461696e696e672076697375616c697a6174696f6e73206f6620616c6c20746865206c69766573206c697665642062792073696d756c61746564206d696e647320696e20746865207363686f6f6c206f6620756e6c6561726e696e672ea264697066735822122054417cc2247f60e9181268cad863178b91a5d841e9b01302efa0e0e7f1b7e3d464736f6c634300080c003360806040523480156200001157600080fd5b506040516200002090620000ef565b604051809103906000f0801580156200003d573d6000803e3d6000fd5b506000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506040516200008b90620000fd565b604051809103906000f080158015620000a8573d6000803e3d6000fd5b50600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506200010b565b61393b8062003fde83390190565b613f43806200791983390190565b613ec3806200011b6000396000f3fe608060405234801561001057600080fd5b50600436106100575760003560e01c8063192a0a1f1461005c57806337ee03ec1461008c578063938bfc8e146100bc578063effaaf6a146100da578063f2c31bd91461010a575b600080fd5b61007660048036038101906100719190612cb6565b610128565b6040516100839190612d7c565b60405180910390f35b6100a660048036038101906100a19190612dd6565b610165565b6040516100b39190612d7c565b60405180910390f35b6100c46105ff565b6040516100d19190612e95565b60405180910390f35b6100f460048036038101906100ef9190612dd6565b610625565b6040516101019190612d7c565b60405180910390f35b610112610639565b60405161011f9190612ed1565b60405180910390f35b606061013f6101368361065d565b600060086107e6565b60405160200161014f9190612f74565b6040516020818303038152906040529050919050565b606060008360001b60405160200161017d9190612fc1565b6040516020818303038152906040529050600080600061019d84876108e2565b92509250925060006101ec6040518060400160405280601181526020017f546f74616c20457870657269656e6365730000000000000000000000000000008152506101e78561065d565b610b0b565b905060006102376040518060400160405280601081526020017f5261726520457870657269656e636573000000000000000000000000000000008152506102328761065d565b610b0b565b905060608089156102bd576102b66040518060400160405280600c81526020017f54797065206f66204d696e7400000000000000000000000000000000000000008152506040518060400160405280600681526020017f52616e646f6d0000000000000000000000000000000000000000000000000000815250610b0b565b9050610334565b6103316040518060400160405280600c81526020017f54797065206f66204d696e7400000000000000000000000000000000000000008152506040518060400160405280600b81526020017f43686f73656e2053656564000000000000000000000000000000000000000000815250610b0b565b90505b60005b600a8110156105c85760018682600a811061035557610354612fdc565b5b602002015160006003811061036d5761036c612fdc565b5b602002015114156105b45760006103838261065d565b6040516020016103939190613031565b6040516020818303038152906040529050606060018884600a81106103bb576103ba612fdc565b5b60200201516001600381106103d3576103d2612fdc565b5b602002015114156104b35760008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166355c701258985600a811061042d5761042c612fdc565b5b602002015160026003811061044557610444612fdc565b5b60200201516040518263ffffffff1660e01b81526004016104669190613066565b600060405180830381865afa158015610483573d6000803e3d6000fd5b505050506040513d6000823e3d601f19601f820116820180604052508101906104ac91906131a7565b9050610584565b60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166383240f838985600a811061050257610501612fdc565b5b602002015160026003811061051a57610519612fdc565b5b60200201516040518263ffffffff1660e01b815260040161053b9190613066565b600060405180830381865afa158015610558573d6000803e3d6000fd5b505050506040513d6000823e3d601f19601f8201168201806040525081019061058191906131a7565b90505b8461058f8383610b0b565b6040516020016105a0929190613216565b604051602081830303815290604052945050505b6001816105c19190613278565b9050610337565b50838382846040516020016105e094939291906133b2565b6040516020818303038152906040529850505050505050505092915050565b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60606106318383610b37565b905092915050565b60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b606060008214156106a5576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506107e1565b600082905060005b600082146106d75780806106c09061341c565b915050600a826106d09190613494565b91506106ad565b60008167ffffffffffffffff8111156106f3576106f261308b565b5b6040519080825280601f01601f1916602001820160405280156107255781602001600182028036833780820191505090505b50905060008290505b600086146107d95760018161074391906134c5565b90506000600a80886107559190613494565b61075f91906134f9565b8761076a91906134c5565b60306107769190613560565b905060008160f81b90508084848151811061079457610793612fdc565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a886107d09190613494565b9750505061072e565b819450505050505b919050565b60606000849050600084846107fb91906134c5565b67ffffffffffffffff8111156108145761081361308b565b5b6040519080825280601f01601f1916602001820160405280156108465781602001600182028036833780820191505090505b50905060008590505b848110156108d55782818151811061086a57610869612fdc565b5b602001015160f81c60f81b82878361088291906134c5565b8151811061089357610892612fdc565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535080806108cd9061341c565b91505061084f565b5080925050509392505050565b6000806108ed612c1c565b6108f5612c1c565b600080600061090389610c47565b905060006109108a610c76565b9050600061091d8b610ca5565b9050600061092a8c610cd4565b905060005b600a811015610af3576000806002836109489190613597565b141561096457859050838661095d9190613278565b9550610976565b84905082856109739190613278565b94505b6000600483836109869190613278565b6109909190613597565b1415610ade5760006109ae8f8460136109a99190613278565b610d03565b60ff1690506109bb612c4a565b6001816000600381106109d1576109d0612fdc565b5b6020020181815250508e8015610a095750600060038386866109f39190613278565b6109fd9190613278565b610a079190613597565b145b15610a7857600181600160038110610a2457610a23612fdc565b5b602002018181525050610100602183610a3d91906134f9565b610a479190613494565b81600260038110610a5b57610a5a612fdc565b5b602002018181525050600189610a719190613278565b9850610ab0565b610100603e83610a8891906134f9565b610a929190613494565b81600260038110610aa657610aa5612fdc565b5b6020020181815250505b808b85600a8110610ac457610ac3612fdc565b5b602002018190525060018a610ad99190613278565b995050505b50600181610aec9190613278565b905061092f565b50848688995099509950505050505050509250925092565b60608282604051602001610b2092919061363a565b604051602081830303815290604052905092915050565b606060008360001b604051602001610b4f9190612fc1565b6040516020818303038152906040529050600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663d95914e8826040518263ffffffff1660e01b8152600401610bbb91906136e0565b600060405180830381865afa158015610bd8573d6000803e3d6000fd5b505050506040513d6000823e3d601f19601f82011682018060405250810190610c0191906131a7565b610c0a82610db9565b610c148386610fd8565b610c1c61115d565b604051602001610c2f94939291906137c0565b60405160208183030381529060405291505092915050565b60006010610c5683600f610d03565b60ff16610c639190613494565b6064610c6f9190613278565b9050919050565b60006010610c85836010610d03565b60ff16610c929190613494565b6064610c9e9190613278565b9050919050565b60006010610cb4836011610d03565b60ff16610cc19190613494565b600a610ccd9190613278565b9050919050565b60006010610ce3836012610d03565b60ff16610cf09190613494565b600a610cfc9190613278565b9050919050565b600081600183610d139190613278565b1015610d54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4b90613864565b60405180910390fd5b600182610d619190613278565b83511015610da4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9b906138d0565b60405180910390fd5b60008260018501015190508091505092915050565b60606000604051806080016040528060418152602001613e4d6041913990506000610de384612688565b90506000610df0856126b7565b90506000806000600390506000610e06896126e6565b90506000610e138a612717565b905060006040518060400160405280600181526020017f310000000000000000000000000000000000000000000000000000000000000081525090506000600190505b888111610fc6578686610e699190613278565b95506000600282610e7a9190613597565b1415610ead57846002868a610e8f91906134f9565b610e999190613494565b901c9650600185610eaa9190613278565b94505b6040518060400160405280600181526020017f31000000000000000000000000000000000000000000000000000000000000008152509150600060058588610ef59190613278565b610eff9190613597565b1415610f3e576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525091505b89610f82610f4b8861065d565b610f548a61065d565b610f5d8861065d565b604051602001610f6d919061393c565b6040516020818303038152906040528661272e565b604051602001610f93929190613971565b60405160208183030381529060405299508284610fb09190613278565b9350600181610fbf9190613278565b9050610e56565b50889950505050505050505050919050565b60606111556040518060400160405280600181526020017f67000000000000000000000000000000000000000000000000000000000000008152506110876040518060400160405280600481526020017f6d61736b000000000000000000000000000000000000000000000000000000008152506040518060400160405280601081526020017f75726c28236375746f75744d61736b29000000000000000000000000000000008152506129bf565b61108f6129eb565b60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663e7288d6b88886040518363ffffffff1660e01b81526004016110ea9291906139a4565b600060405180830381865afa158015611107573d6000803e3d6000fd5b505050506040513d6000823e3d601f19601f8201168201806040525081019061113091906131a7565b604051602001611141929190613971565b604051602081830303815290604052612b77565b905092915050565b606061152d6111d66040518060400160405280600181526020017f78000000000000000000000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f31313100000000000000000000000000000000000000000000000000000000008152506129bf565b61124a6040518060400160405280600181526020017f79000000000000000000000000000000000000000000000000000000000000008152506040518060400160405280600281526020017f35300000000000000000000000000000000000000000000000000000000000008152506129bf565b6112be6040518060400160405280600581526020017f77696474680000000000000000000000000000000000000000000000000000008152506040518060400160405280600281526020017f37380000000000000000000000000000000000000000000000000000000000008152506129bf565b6113326040518060400160405280600681526020017f68656967687400000000000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f31353000000000000000000000000000000000000000000000000000000000008152506129bf565b6113a66040518060400160405280600281526020017f72790000000000000000000000000000000000000000000000000000000000008152506040518060400160405280600281526020017f34300000000000000000000000000000000000000000000000000000000000008152506129bf565b61141a6040518060400160405280600281526020017f72780000000000000000000000000000000000000000000000000000000000008152506040518060400160405280600281526020017f34300000000000000000000000000000000000000000000000000000000000008152506129bf565b61148e6040518060400160405280600481526020017f6d61736b000000000000000000000000000000000000000000000000000000008152506040518060400160405280601081526020017f75726c28236375746f75744d61736b29000000000000000000000000000000008152506129bf565b6115026040518060400160405280600981526020017f636c69702d7061746800000000000000000000000000000000000000000000008152506040518060400160405280601081526020017f75726c2823636c6970426f74746f6d29000000000000000000000000000000008152506129bf565b6040516020016115199897969594939291906139d4565b604051602081830303815290604052612ba8565b6118866115a46040518060400160405280600181526020017f78000000000000000000000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f31313300000000000000000000000000000000000000000000000000000000008152506129bf565b6116186040518060400160405280600181526020017f79000000000000000000000000000000000000000000000000000000000000008152506040518060400160405280600281526020017f35300000000000000000000000000000000000000000000000000000000000008152506129bf565b61168c6040518060400160405280600581526020017f77696474680000000000000000000000000000000000000000000000000000008152506040518060400160405280600281526020017f37340000000000000000000000000000000000000000000000000000000000008152506129bf565b6117006040518060400160405280600681526020017f68656967687400000000000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f32303500000000000000000000000000000000000000000000000000000000008152506129bf565b6117746040518060400160405280600281526020017f72790000000000000000000000000000000000000000000000000000000000008152506040518060400160405280600281526020017f33350000000000000000000000000000000000000000000000000000000000008152506129bf565b6117e86040518060400160405280600281526020017f72780000000000000000000000000000000000000000000000000000000000008152506040518060400160405280600281526020017f35300000000000000000000000000000000000000000000000000000000000008152506129bf565b61185c6040518060400160405280600481526020017f6d61736b000000000000000000000000000000000000000000000000000000008152506040518060400160405280601081526020017f75726c28236375746f75744d61736b29000000000000000000000000000000008152506129bf565b6040516020016118729796959493929190613a46565b604051602081830303815290604052612ba8565b611a806118fd6040518060400160405280600181526020017f78000000000000000000000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f31313100000000000000000000000000000000000000000000000000000000008152506129bf565b6119716040518060400160405280600181526020017f79000000000000000000000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f31353000000000000000000000000000000000000000000000000000000000008152506129bf565b6119e56040518060400160405280600581526020017f77696474680000000000000000000000000000000000000000000000000000008152506040518060400160405280600281526020017f37380000000000000000000000000000000000000000000000000000000000008152506129bf565b611a596040518060400160405280600681526020017f68656967687400000000000000000000000000000000000000000000000000008152506040518060400160405280600181526020017f34000000000000000000000000000000000000000000000000000000000000008152506129bf565b604051602001611a6c9493929190613aab565b604051602081830303815290604052612ba8565b611ec3611af76040518060400160405280600181526020017f78000000000000000000000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f31313500000000000000000000000000000000000000000000000000000000008152506129bf565b611b6b6040518060400160405280600181526020017f79000000000000000000000000000000000000000000000000000000000000008152506040518060400160405280600281526020017f34350000000000000000000000000000000000000000000000000000000000008152506129bf565b611bdf6040518060400160405280600581526020017f77696474680000000000000000000000000000000000000000000000000000008152506040518060400160405280600281526020017f37300000000000000000000000000000000000000000000000000000000000008152506129bf565b611c536040518060400160405280600681526020017f68656967687400000000000000000000000000000000000000000000000000008152506040518060400160405280600281526020017f34300000000000000000000000000000000000000000000000000000000000008152506129bf565b611cc76040518060400160405280600281526020017f72790000000000000000000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f31303000000000000000000000000000000000000000000000000000000000008152506129bf565b611d3b6040518060400160405280600281526020017f72780000000000000000000000000000000000000000000000000000000000008152506040518060400160405280600281526020017f31300000000000000000000000000000000000000000000000000000000000008152506129bf565b611daf6040518060400160405280600481526020017f66696c6c000000000000000000000000000000000000000000000000000000008152506040518060400160405280600581526020017f77686974650000000000000000000000000000000000000000000000000000008152506129bf565b611e236040518060400160405280600781526020017f6f706163697479000000000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f302e3400000000000000000000000000000000000000000000000000000000008152506129bf565b611e976040518060400160405280600481526020017f6d61736b000000000000000000000000000000000000000000000000000000008152506040518060400160405280601781526020017f75726c2823746f705265666c656374696f6e4d61736b290000000000000000008152506129bf565b604051602001611eaf99989796959493929190613ae9565b604051602081830303815290604052612ba8565b612291611f3a6040518060400160405280600181526020017f78000000000000000000000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f31323200000000000000000000000000000000000000000000000000000000008152506129bf565b611fae6040518060400160405280600181526020017f79000000000000000000000000000000000000000000000000000000000000008152506040518060400160405280600281526020017f35350000000000000000000000000000000000000000000000000000000000008152506129bf565b6120226040518060400160405280600581526020017f77696474680000000000000000000000000000000000000000000000000000008152506040518060400160405280600281526020017f35360000000000000000000000000000000000000000000000000000000000008152506129bf565b6120966040518060400160405280600681526020017f68656967687400000000000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f31383400000000000000000000000000000000000000000000000000000000008152506129bf565b61210a6040518060400160405280600281526020017f72790000000000000000000000000000000000000000000000000000000000008152506040518060400160405280600281526020017f33300000000000000000000000000000000000000000000000000000000000008152506129bf565b61217e6040518060400160405280600281526020017f72780000000000000000000000000000000000000000000000000000000000008152506040518060400160405280600281526020017f33300000000000000000000000000000000000000000000000000000000000008152506129bf565b6121f26040518060400160405280600481526020017f66696c6c000000000000000000000000000000000000000000000000000000008152506040518060400160405280600581526020017f77686974650000000000000000000000000000000000000000000000000000008152506129bf565b6122666040518060400160405280600781526020017f6f706163697479000000000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f302e3400000000000000000000000000000000000000000000000000000000008152506129bf565b60405160200161227d9897969594939291906139d4565b604051602081830303815290604052612ba8565b61265f6123086040518060400160405280600181526020017f78000000000000000000000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f31313500000000000000000000000000000000000000000000000000000000008152506129bf565b61237c6040518060400160405280600181526020017f79000000000000000000000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f31383000000000000000000000000000000000000000000000000000000000008152506129bf565b6123f06040518060400160405280600581526020017f77696474680000000000000000000000000000000000000000000000000000008152506040518060400160405280600281526020017f37300000000000000000000000000000000000000000000000000000000000008152506129bf565b6124646040518060400160405280600681526020017f68656967687400000000000000000000000000000000000000000000000000008152506040518060400160405280600281526020017f37300000000000000000000000000000000000000000000000000000000000008152506129bf565b6124d86040518060400160405280600281526020017f72790000000000000000000000000000000000000000000000000000000000008152506040518060400160405280600281526020017f33300000000000000000000000000000000000000000000000000000000000008152506129bf565b61254c6040518060400160405280600281526020017f72780000000000000000000000000000000000000000000000000000000000008152506040518060400160405280600281526020017f33300000000000000000000000000000000000000000000000000000000000008152506129bf565b6125c06040518060400160405280600681526020017f66696c74657200000000000000000000000000000000000000000000000000008152506040518060400160405280601681526020017f75726c282364726f70536861646f7746696c74657229000000000000000000008152506129bf565b6126346040518060400160405280600981526020017f636c69702d7061746800000000000000000000000000000000000000000000008152506040518060400160405280601081526020017f75726c2823636c6970536861646f7729000000000000000000000000000000008152506129bf565b60405160200161264b9897969594939291906139d4565b604051602081830303815290604052612ba8565b60405160200161267496959493929190613b68565b604051602081830303815290604052905090565b60006010612697836000610d03565b60ff166126a49190613494565b60026126b09190613278565b9050919050565b600060046126c6836001610d03565b60ff166126d39190613494565b60dc6126df9190613278565b9050919050565b60006101006101686126f9846002610d03565b60ff1661270691906134f9565b6127109190613494565b9050919050565b6000612724826003610d03565b60ff169050919050565b60606129b56127a76040518060400160405280600581526020017f77696474680000000000000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f33303000000000000000000000000000000000000000000000000000000000008152506129bf565b6127e66040518060400160405280600181526020017f7900000000000000000000000000000000000000000000000000000000000000815250886129bf565b6128256040518060400160405280600681526020017f6865696768740000000000000000000000000000000000000000000000000000815250886129bf565b6128646040518060400160405280600481526020017f66696c6c00000000000000000000000000000000000000000000000000000000815250886129bf565b6128d86040518060400160405280600681526020017f7374726f6b6500000000000000000000000000000000000000000000000000008152506040518060400160405280600581526020017f626c61636b0000000000000000000000000000000000000000000000000000008152506129bf565b61294c6040518060400160405280600681526020017f66696c74657200000000000000000000000000000000000000000000000000008152506040518060400160405280601081526020017f75726c282373616e6446696c74657229000000000000000000000000000000008152506129bf565b61298b6040518060400160405280600781526020017f6f706163697479000000000000000000000000000000000000000000000000008152508a6129bf565b6040516020016129a19796959493929190613a46565b604051602081830303815290604052612ba8565b9050949350505050565b606082826040516020016129d4929190613c32565b604051602081830303815290604052905092915050565b6060612b72612a646040518060400160405280600581526020017f77696474680000000000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f31303025000000000000000000000000000000000000000000000000000000008152506129bf565b612ad86040518060400160405280600681526020017f68656967687400000000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f31303025000000000000000000000000000000000000000000000000000000008152506129bf565b612b4c6040518060400160405280600481526020017f66696c6c000000000000000000000000000000000000000000000000000000008152506040518060400160405280600581526020017f77686974650000000000000000000000000000000000000000000000000000008152506129bf565b604051602001612b5e93929190613c83565b604051602081830303815290604052612ba8565b905090565b606083838386604051602001612b909493929190613d4c565b60405160208183030381529060405290509392505050565b6060612be96040518060400160405280600481526020017f726563740000000000000000000000000000000000000000000000000000000081525083612bf0565b9050919050565b60608282604051602001612c05929190613dfb565b604051602081830303815290604052905092915050565b604051806101400160405280600a905b612c34612c4a565b815260200190600190039081612c2c5790505090565b6040518060600160405280600390602082028036833780820191505090505090565b6000604051905090565b600080fd5b600080fd5b6000819050919050565b612c9381612c80565b8114612c9e57600080fd5b50565b600081359050612cb081612c8a565b92915050565b600060208284031215612ccc57612ccb612c76565b5b6000612cda84828501612ca1565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612d1d578082015181840152602081019050612d02565b83811115612d2c576000848401525b50505050565b6000601f19601f8301169050919050565b6000612d4e82612ce3565b612d588185612cee565b9350612d68818560208601612cff565b612d7181612d32565b840191505092915050565b60006020820190508181036000830152612d968184612d43565b905092915050565b60008115159050919050565b612db381612d9e565b8114612dbe57600080fd5b50565b600081359050612dd081612daa565b92915050565b60008060408385031215612ded57612dec612c76565b5b6000612dfb85828601612ca1565b9250506020612e0c85828601612dc1565b9150509250929050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b6000612e5b612e56612e5184612e16565b612e36565b612e16565b9050919050565b6000612e6d82612e40565b9050919050565b6000612e7f82612e62565b9050919050565b612e8f81612e74565b82525050565b6000602082019050612eaa6000830184612e86565b92915050565b6000612ebb82612e62565b9050919050565b612ecb81612eb0565b82525050565b6000602082019050612ee66000830184612ec2565b92915050565b600081905092915050565b7f43617073756c6520230000000000000000000000000000000000000000000000600082015250565b6000612f2d600983612eec565b9150612f3882612ef7565b600982019050919050565b6000612f4e82612ce3565b612f588185612eec565b9350612f68818560208601612cff565b80840191505092915050565b6000612f7f82612f20565b9150612f8b8284612f43565b915081905092915050565b6000819050919050565b6000819050919050565b612fbb612fb682612f96565b612fa0565b82525050565b6000612fcd8284612faa565b60208201915081905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f536c6f7420000000000000000000000000000000000000000000000000000000815250565b600061303c8261300b565b60058201915061304c8284612f43565b915081905092915050565b61306081612c80565b82525050565b600060208201905061307b6000830184613057565b92915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6130c382612d32565b810181811067ffffffffffffffff821117156130e2576130e161308b565b5b80604052505050565b60006130f5612c6c565b905061310182826130ba565b919050565b600067ffffffffffffffff8211156131215761312061308b565b5b61312a82612d32565b9050602081019050919050565b600061314a61314584613106565b6130eb565b90508281526020810184848401111561316657613165613086565b5b613171848285612cff565b509392505050565b600082601f83011261318e5761318d613081565b5b815161319e848260208601613137565b91505092915050565b6000602082840312156131bd576131bc612c76565b5b600082015167ffffffffffffffff8111156131db576131da612c7b565b5b6131e784828501613179565b91505092915050565b7f2c00000000000000000000000000000000000000000000000000000000000000815250565b60006132228285612f43565b915061322d826131f0565b60018201915061323d8284612f43565b91508190509392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061328382612c80565b915061328e83612c80565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156132c3576132c2613249565b5b828201905092915050565b7f2261747472696275746573223a205b0000000000000000000000000000000000600082015250565b6000613304600f83612eec565b915061330f826132ce565b600f82019050919050565b7f2c00000000000000000000000000000000000000000000000000000000000000600082015250565b6000613350600183612eec565b915061335b8261331a565b600182019050919050565b7f5d00000000000000000000000000000000000000000000000000000000000000600082015250565b600061339c600183612eec565b91506133a782613366565b600182019050919050565b60006133bd826132f7565b91506133c98287612f43565b91506133d482613343565b91506133e08286612f43565b91506133eb82613343565b91506133f78285612f43565b91506134038284612f43565b915061340e8261338f565b915081905095945050505050565b600061342782612c80565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561345a57613459613249565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061349f82612c80565b91506134aa83612c80565b9250826134ba576134b9613465565b5b828204905092915050565b60006134d082612c80565b91506134db83612c80565b9250828210156134ee576134ed613249565b5b828203905092915050565b600061350482612c80565b915061350f83612c80565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561354857613547613249565b5b828202905092915050565b600060ff82169050919050565b600061356b82613553565b915061357683613553565b92508260ff0382111561358c5761358b613249565b5b828201905092915050565b60006135a282612c80565b91506135ad83612c80565b9250826135bd576135bc613465565b5b828206905092915050565b7f7b2274726169745f74797065223a202200000000000000000000000000000000815250565b7f222c202276616c7565223a202200000000000000000000000000000000000000815250565b7f227d000000000000000000000000000000000000000000000000000000000000815250565b6000613645826135c8565b6010820191506136558285612f43565b9150613660826135ee565b600d820191506136708284612f43565b915061367b82613614565b6002820191508190509392505050565b600081519050919050565b600082825260208201905092915050565b60006136b28261368b565b6136bc8185613696565b93506136cc818560208601612cff565b6136d581612d32565b840191505092915050565b600060208201905081810360008301526136fa81846136a7565b905092915050565b7f3c73766720786d6c6e733d22687474703a2f2f7777772e77332e6f72672f323060008201527f30302f737667222077696474683d2233303022206865696768743d223330302260208201527f207374796c653d226261636b67726f756e643a23666666223e00000000000000604082015250565b6000613784605983612eec565b915061378f82613702565b605982019050919050565b7f3c2f7376673e0000000000000000000000000000000000000000000000000000815250565b60006137cb82613777565b91506137d78287612f43565b91506137e38286612f43565b91506137ef8285612f43565b91506137fb8284612f43565b91506138068261379a565b60068201915081905095945050505050565b7f746f55696e74385f6f766572666c6f7700000000000000000000000000000000600082015250565b600061384e601083612cee565b915061385982613818565b602082019050919050565b6000602082019050818103600083015261387d81613841565b9050919050565b7f746f55696e74385f6f75744f66426f756e647300000000000000000000000000600082015250565b60006138ba601383612cee565b91506138c582613884565b602082019050919050565b600060208201905081810360008301526138e9816138ad565b9050919050565b7f68736c2800000000000000000000000000000000000000000000000000000000815250565b7f2c3730252c353025290000000000000000000000000000000000000000000000815250565b6000613947826138f0565b6004820191506139578284612f43565b915061396282613916565b60098201915081905092915050565b600061397d8285612f43565b91506139898284612f43565b91508190509392505050565b61399e81612d9e565b82525050565b600060408201905081810360008301526139be81856136a7565b90506139cd6020830184613995565b9392505050565b60006139e0828b612f43565b91506139ec828a612f43565b91506139f88289612f43565b9150613a048288612f43565b9150613a108287612f43565b9150613a1c8286612f43565b9150613a288285612f43565b9150613a348284612f43565b91508190509998505050505050505050565b6000613a52828a612f43565b9150613a5e8289612f43565b9150613a6a8288612f43565b9150613a768287612f43565b9150613a828286612f43565b9150613a8e8285612f43565b9150613a9a8284612f43565b915081905098975050505050505050565b6000613ab78287612f43565b9150613ac38286612f43565b9150613acf8285612f43565b9150613adb8284612f43565b915081905095945050505050565b6000613af5828c612f43565b9150613b01828b612f43565b9150613b0d828a612f43565b9150613b198289612f43565b9150613b258288612f43565b9150613b318287612f43565b9150613b3d8286612f43565b9150613b498285612f43565b9150613b558284612f43565b91508190509a9950505050505050505050565b6000613b748289612f43565b9150613b808288612f43565b9150613b8c8287612f43565b9150613b988286612f43565b9150613ba48285612f43565b9150613bb08284612f43565b9150819050979650505050505050565b7f3d00000000000000000000000000000000000000000000000000000000000000815250565b7f2200000000000000000000000000000000000000000000000000000000000000815250565b7f2220000000000000000000000000000000000000000000000000000000000000815250565b6000613c3e8285612f43565b9150613c4982613bc0565b600182019150613c5882613be6565b600182019150613c688284612f43565b9150613c7382613c0c565b6002820191508190509392505050565b6000613c8f8286612f43565b9150613c9b8285612f43565b9150613ca78284612f43565b9150819050949350505050565b7f3c00000000000000000000000000000000000000000000000000000000000000815250565b7f2000000000000000000000000000000000000000000000000000000000000000815250565b7f3e00000000000000000000000000000000000000000000000000000000000000815250565b7f3c2f000000000000000000000000000000000000000000000000000000000000815250565b6000613d5782613cb4565b600182019150613d678287612f43565b9150613d7282613cda565b600182019150613d828286612f43565b9150613d8d82613d00565b600182019150613d9d8285612f43565b9150613da882613d26565b600282019150613db88284612f43565b9150613dc382613d00565b60018201915081905095945050505050565b7f2f3e000000000000000000000000000000000000000000000000000000000000815250565b6000613e0682613cb4565b600182019150613e168285612f43565b9150613e2182613cda565b600182019150613e318284612f43565b9150613e3c82613dd5565b600282019150819050939250505056fe3c726563742077696474683d223130302522206865696768743d2231303025222066696c7465723d2275726c282366696e6553616e6446696c74657229222f3e20a26469706673582212208afabc918767fb70c07179ea91d5e95d9e7d53c6cc7638b12ddfdcf229c10a0f64736f6c634300080c003360806040526040518061042001604052806040518060400160405280601081526020017f444956494e4154454420434f52414c530000000000000000000000000000000081525081526020016040518060400160405280600d81526020017f504c414e5445442052554e45530000000000000000000000000000000000000081525081526020016040518060400160405280600a81526020017f4c45442045584f4455530000000000000000000000000000000000000000000081525081526020016040518060400160405280601381526020017f435241465445442049524944455343454e43450000000000000000000000000081525081526020016040518060400160405280601181526020017f414343554d554c415445442044554e455300000000000000000000000000000081525081526020016040518060400160405280601081526020017f444543495048455245442043415645530000000000000000000000000000000081525081526020016040518060400160405280600b81526020017f53544f4c45204755494c5400000000000000000000000000000000000000000081525081526020016040518060400160405280600a81526020017f57524f54452053414e440000000000000000000000000000000000000000000081525081526020016040518060400160405280600c81526020017f425241494445442047454d53000000000000000000000000000000000000000081525081526020016040518060400160405280601181526020017f544f5543484544204c494748544e494e4700000000000000000000000000000081525081526020016040518060400160405280601181526020017f535041524b4544204157414b454e494e4700000000000000000000000000000081525081526020016040518060400160405280600981526020017f544f52452046454152000000000000000000000000000000000000000000000081525081526020016040518060400160405280601281526020017f414c49474e454420434f4c4c454354495645000000000000000000000000000081525081526020016040518060400160405280601081526020017f4841434b454420434f4e465553494f4e0000000000000000000000000000000081525081526020016040518060400160405280600c81526020017f535445455245442057454253000000000000000000000000000000000000000081525081526020016040518060400160405280601081526020017f475549444544204d4f56454d454e54530000000000000000000000000000000081525081526020016040518060400160405280601581526020017f50524f475245535345442050455243455054494f4e000000000000000000000081525081526020016040518060400160405280601081526020017f4142534f524245442054484f554748540000000000000000000000000000000081525081526020016040518060400160405280601381526020017f434f4e535452554354454420454d50495245530000000000000000000000000081525081526020016040518060400160405280600d81526020017f42595041535345442045474f530000000000000000000000000000000000000081525081526020016040518060400160405280601181526020017f52455452494556454420524944444c455300000000000000000000000000000081525081526020016040518060400160405280600981526020017f4d45542046524f4753000000000000000000000000000000000000000000000081525081526020016040518060400160405280600e81526020017f5455524e4544205048595349435300000000000000000000000000000000000081525081526020016040518060400160405280600b81526020017f534c45505420415552415300000000000000000000000000000000000000000081525081526020016040518060400160405280600f81526020017f464f554e442053494c4c494e455353000000000000000000000000000000000081525081526020016040518060400160405280601381526020017f434f4f4b4544205355525645494c4c414e43450000000000000000000000000081525081526020016040518060400160405280601081526020017f4255494c542042494f2d41524d4f55520000000000000000000000000000000081525081526020016040518060400160405280601481526020017f414c4c4556494154454420434f474e4954494f4e00000000000000000000000081525081526020016040518060400160405280601481526020017f494e54454e534946494544204c5543494449545900000000000000000000000081525081526020016040518060400160405280601381526020017f5041494e54454420494e5445524245494e47530000000000000000000000000081525081526020016040518060400160405280600e81526020017f4452414e4b2043554c545552455300000000000000000000000000000000000081525081526020016040518060400160405280601081526020017f454d455247454e54204b4e4f57494e470000000000000000000000000000000081525081526020016040518060400160405280600e81526020017f53574550542053554e5348494e450000000000000000000000000000000000008152508152506000906021620007bb92919062001637565b50604051806107c001604052806040518060400160405280601281526020017f4c454e475448454e454420504c414e455453000000000000000000000000000081525081526020016040518060400160405280600e81526020017f425245415448454420534f4e494300000000000000000000000000000000000081525081526020016040518060400160405280600e81526020017f4245414d45442052485954484d5300000000000000000000000000000000000081525081526020016040518060400160405280601181526020017f4d455247454420434f4e54454e54494f4e00000000000000000000000000000081525081526020016040518060400160405280601081526020017f4445504c4f5945442050555a5a4c45530000000000000000000000000000000081525081526020016040518060400160405280600f81526020017f524543524541544544204d59544853000000000000000000000000000000000081525081526020016040518060400160405280600a81526020017f4752455720524f4f54530000000000000000000000000000000000000000000081525081526020016040518060400160405280600f81526020017f554e44455253544f4f44205241494e000000000000000000000000000000000081525081526020016040518060400160405280601781526020017f5245564954414c4953454420454c45435452494349545900000000000000000081525081526020016040518060400160405280600f81526020017f54484f55474854204352595354414c000000000000000000000000000000000081525081526020016040518060400160405280601081526020017f535552505249534544204245494e47530000000000000000000000000000000081525081526020016040518060400160405280601181526020017f504c4159454420494e46494e4954454c5900000000000000000000000000000081525081526020016040518060400160405280600f81526020017f534e5547474c45442044414e474552000000000000000000000000000000000081525081526020016040518060400160405280600d81526020017f50494e43484544204d41474d410000000000000000000000000000000000000081525081526020016040518060400160405280600f81526020017f4a5547474c4544204d4f4d454e5453000000000000000000000000000000000081525081526020016040518060400160405280600b81526020017f53504f4b4520574154455200000000000000000000000000000000000000000081525081526020016040518060400160405280600e81526020017f5343554c5054454420534f554e4400000000000000000000000000000000000081525081526020016040518060400160405280601081526020017f424547414e20424547494e4e494e47530000000000000000000000000000000081525081526020016040518060400160405280600e81526020017f424543414d452045434f4c4f475900000000000000000000000000000000000081525081526020016040518060400160405280600c81526020017f544153544544204c49474854000000000000000000000000000000000000000081525081526020016040518060400160405280600e81526020017f54484f554748542053544f524d5300000000000000000000000000000000000081525081526020016040518060400160405280601281526020017f43495243554c415445442047524156495459000000000000000000000000000081525081526020016040518060400160405280601081526020017f5357414d20434f4c4f555246554c4c590000000000000000000000000000000081525081526020016040518060400160405280600f81526020017f47414c56414e495345442042415353000000000000000000000000000000000081525081526020016040518060400160405280600f81526020017f4845415254454e454420524f434b53000000000000000000000000000000000081525081526020016040518060400160405280601281526020017f4b494e444c454420454152544853544f5259000000000000000000000000000081525081526020016040518060400160405280601181526020017f4157414b454e4544204752494d4f49524500000000000000000000000000000081525081526020016040518060400160405280601181526020017f494e4349544544204142554e44414e434500000000000000000000000000000081525081526020016040518060400160405280600d81526020017f45564f4c5645442053454544530000000000000000000000000000000000000081525081526020016040518060400160405280600d81526020017f44414e43454420434f534d49430000000000000000000000000000000000000081525081526020016040518060400160405280600b81526020017f524547454e45524154454400000000000000000000000000000000000000000081525081526020016040518060400160405280600f81526020017f464c495254454420464c4f57455253000000000000000000000000000000000081525081526020016040518060400160405280601081526020017f4348455249534845442057494e5445520000000000000000000000000000000081525081526020016040518060400160405280600c81526020017f544f59454420524956455253000000000000000000000000000000000000000081525081526020016040518060400160405280600e81526020017f435245415445442042454155545900000000000000000000000000000000000081525081526020016040518060400160405280600f81526020017f454d424f4c44454e45442044555354000000000000000000000000000000000081525081526020016040518060400160405280600a81526020017f4c4f564544204d4f53530000000000000000000000000000000000000000000081525081526020016040518060400160405280600d81526020017f44414e43454420574f524c44530000000000000000000000000000000000000081525081526020016040518060400160405280601281526020017f574849535045524544204441524b4e455353000000000000000000000000000081525081526020016040518060400160405280600e81526020017f434f44454420444956494e49545900000000000000000000000000000000000081525081526020016040518060400160405280600e81526020017f4c41554748454420444545504c5900000000000000000000000000000000000081525081526020016040518060400160405280600d81526020017f445245414d45442046554e47490000000000000000000000000000000000000081525081526020016040518060400160405280600f81526020017f56454e545552454420444550544853000000000000000000000000000000000081525081526020016040518060400160405280601081526020017f57414e444552454420464f52455354530000000000000000000000000000000081525081526020016040518060400160405280600c81526020017f5343554c505445442053554e000000000000000000000000000000000000000081525081526020016040518060400160405280601181526020017f5355425645525445442045434c4950534500000000000000000000000000000081525081526020016040518060400160405280601181526020017f454d424f44494544204d4f554e5441494e00000000000000000000000000000081525081526020016040518060400160405280601181526020017f4558504c4f52454420444956494e49545900000000000000000000000000000081525081526020016040518060400160405280601281526020017f44454550454e4544205354494c4c4e455353000000000000000000000000000081525081526020016040518060400160405280600f81526020017f5245464c4543544544205354415253000000000000000000000000000000000081525081526020016040518060400160405280600e81526020017f554e4954454420465249454e445300000000000000000000000000000000000081525081526020016040518060400160405280601381526020017f4245465249454e444544204441524b4e4553530000000000000000000000000081525081526020016040518060400160405280600e81526020017f46454c5420554e4956455253414c00000000000000000000000000000000000081525081526020016040518060400160405280601481526020017f494e4954494154454420454152544853544f525900000000000000000000000081525081526020016040518060400160405280600c81526020017f454d42524143454420414c4c000000000000000000000000000000000000000081525081526020016040518060400160405280600f81526020017f524f414d454420554e495645525345000000000000000000000000000000000081525081526020016040518060400160405280600f81526020017f4e4f55524953484544204445415448000000000000000000000000000000000081525081526020016040518060400160405280600e81526020017f464c4f4154454420434c4f55445300000000000000000000000000000000000081525081526020016040518060400160405280600f81526020017f4d4f564544204556455259424f4459000000000000000000000000000000000081525081526020016040518060400160405280600b81526020017f46454c5420434f534d494300000000000000000000000000000000000000000081525081526020016040518060400160405280600c81526020017f53484f4f4b20545241554d41000000000000000000000000000000000000000081525081526020016040518060400160405280600b81526020017f4845414c4544205041494e000000000000000000000000000000000000000000815250815250600190603e620016229291906200169e565b503480156200163057600080fd5b5062001888565b8280548282559060005260206000209081019282156200168b579160200282015b828111156200168a5782518290805190602001906200167992919062001705565b509160200191906001019062001658565b5b5090506200169a919062001796565b5090565b828054828255906000526020600020908101928215620016f2579160200282015b82811115620016f1578251829080519060200190620016e092919062001705565b5091602001919060010190620016bf565b5b50905062001701919062001796565b5090565b828054620017139062001852565b90600052602060002090601f01602090048101928262001737576000855562001783565b82601f106200175257805160ff191683800117855562001783565b8280016001018555821562001783579182015b828111156200178257825182559160200191906001019062001765565b5b509050620017929190620017be565b5090565b5b80821115620017ba5760008181620017b09190620017dd565b5060010162001797565b5090565b5b80821115620017d9576000816000905550600101620017bf565b5090565b508054620017eb9062001852565b6000825580601f10620017ff575062001820565b601f0160209004906000526020600020908101906200181f9190620017be565b5b50565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200186b57607f821691505b6020821081141562001882576200188162001823565b5b50919050565b6120a380620018986000396000f3fe608060405234801561001057600080fd5b506004361061004c5760003560e01c806355c701251461005157806383240f8314610081578063e7288d6b146100b1578063fc9f937b146100e1575b600080fd5b61006b60048036038101906100669190611428565b610111565b60405161007891906114ee565b60405180910390f35b61009b60048036038101906100969190611428565b6101bd565b6040516100a891906114ee565b60405180910390f35b6100cb60048036038101906100c6919061167d565b610269565b6040516100d891906114ee565b60405180910390f35b6100fb60048036038101906100f691906118cc565b610645565b60405161010891906114ee565b60405180910390f35b6000818154811061012157600080fd5b90600052602060002001600091509050805461013c9061197e565b80601f01602080910402602001604051908101604052809291908181526020018280546101689061197e565b80156101b55780601f1061018a576101008083540402835291602001916101b5565b820191906000526020600020905b81548152906001019060200180831161019857829003601f168201915b505050505081565b600181815481106101cd57600080fd5b9060005260206000200160009150905080546101e89061197e565b80601f01602080910402602001604051908101604052809291908181526020018280546102149061197e565b80156102615780601f1061023657610100808354040283529160200191610261565b820191906000526020600020905b81548152906001019060200180831161024457829003601f168201915b505050505081565b606080610274611358565b600061027f86610dab565b9050600061028c87610dda565b9050600061029988610e09565b905060006102a689610e38565b90506102b28989610e67565b9091509050809550506102c3611386565b60005b600a811015610634576000806002836102df91906119df565b1415610421576040518060400160405280600281526020017f313000000000000000000000000000000000000000000000000000000000000081525083600001819052506103386003886103339190611a3f565b611090565b83604001819052506040518060400160405280600381526020017f3135300000000000000000000000000000000000000000000000000000000000815250836020018190525061038787611090565b83608001819052506040518060400160405280600281526020017f313000000000000000000000000000000000000000000000000000000000000081525083606001819052506040518060400160405280600581526020017f73746172740000000000000000000000000000000000000000000000000000008152508360a00181905250869050848761041a9190611a73565b9650610559565b6040518060400160405280600381526020017f3135300000000000000000000000000000000000000000000000000000000000815250836000018190525061047460038761046f9190611a3f565b611090565b83604001819052506040518060400160405280600381526020017f323830000000000000000000000000000000000000000000000000000000000081525083602001819052506104c386611090565b83608001819052506040518060400160405280600381526020017f323930000000000000000000000000000000000000000000000000000000000081525083606001819052506040518060400160405280600381526020017f656e6400000000000000000000000000000000000000000000000000000000008152508360a0018190525085905083866105569190611a73565b95505b60018883600a811061056e5761056d611ac9565b5b602002015160006003811061058657610585611ac9565b5b6020020151141561061f57886105fc848a85600a81106105a9576105a8611ac9565b5b60200201516001600381106105c1576105c0611ac9565b5b60200201518b86600a81106105d9576105d8611ac9565b5b60200201516002600381106105f1576105f0611ac9565b5b60200201518f610645565b60405160200161060d929190611b34565b60405160208183030381529060405298505b5060018161062d9190611a73565b90506102c6565b508697505050505050505092915050565b60608060608380156106575750600186145b1561078057600085815481106106705761066f611ac9565b5b9060005260206000200180546106859061197e565b80601f01602080910402602001604051908101604052809291908181526020018280546106b19061197e565b80156106fe5780601f106106d3576101008083540402835291602001916106fe565b820191906000526020600020905b8154815290600101906020018083116106e157829003601f168201915b505050505090506107796040518060400160405280601081526020017f7374726f6b652d646173686172726179000000000000000000000000000000008152506040518060400160405280600181526020017f3400000000000000000000000000000000000000000000000000000000000000815250611219565b915061082a565b6001858154811061079457610793611ac9565b5b9060005260206000200180546107a99061197e565b80601f01602080910402602001604051908101604052809291908181526020018280546107d59061197e565b80156108225780601f106107f757610100808354040283529160200191610822565b820191906000526020600020905b81548152906001019060200180831161080557829003601f168201915b505050505090505b610a0d6040518060400160405280600481526020017f6c696e65000000000000000000000000000000000000000000000000000000008152506108a66040518060400160405280600281526020017f78310000000000000000000000000000000000000000000000000000000000008152508a60000151611219565b6108e96040518060400160405280600281526020017f79310000000000000000000000000000000000000000000000000000000000008152508b60400151611219565b61092c6040518060400160405280600281526020017f78320000000000000000000000000000000000000000000000000000000000008152508c60200151611219565b61096f6040518060400160405280600281526020017f79320000000000000000000000000000000000000000000000000000000000008152508d60400151611219565b6109e36040518060400160405280600681526020017f7374726f6b6500000000000000000000000000000000000000000000000000008152506040518060400160405280600581526020017f626c61636b000000000000000000000000000000000000000000000000000000815250611219565b886040516020016109f996959493929190611b58565b604051602081830303815290604052611245565b610d7f6040518060400160405280600481526020017f7465787400000000000000000000000000000000000000000000000000000000815250610a896040518060400160405280600b81526020017f746578742d616e63686f720000000000000000000000000000000000000000008152508b60a00151611219565b610acc6040518060400160405280600181526020017f78000000000000000000000000000000000000000000000000000000000000008152508c60600151611219565b610b0f6040518060400160405280600181526020017f79000000000000000000000000000000000000000000000000000000000000008152508d60800151611219565b610b836040518060400160405280600b81526020017f666f6e742d66616d696c790000000000000000000000000000000000000000008152506040518060400160405280600981526020017f48656c7665746963610000000000000000000000000000000000000000000000815250611219565b610bf76040518060400160405280600481526020017f66696c6c000000000000000000000000000000000000000000000000000000008152506040518060400160405280600581526020017f626c61636b000000000000000000000000000000000000000000000000000000815250611219565b610c6b6040518060400160405280600b81526020017f666f6e742d7765696768740000000000000000000000000000000000000000008152506040518060400160405280600481526020017f626f6c6400000000000000000000000000000000000000000000000000000000815250611219565b610cdf6040518060400160405280600981526020017f666f6e742d73697a6500000000000000000000000000000000000000000000008152506040518060400160405280600181526020017f3600000000000000000000000000000000000000000000000000000000000000815250611219565b610d536040518060400160405280600681526020017f66696c74657200000000000000000000000000000000000000000000000000008152506040518060400160405280601781526020017f75726c2823736f6c696454657874424746696c74657229000000000000000000815250611219565b604051602001610d6a989796959493929190611bb0565b60405160208183030381529060405284611271565b604051602001610d90929190611b34565b60405160208183030381529060405292505050949350505050565b60006010610dba83600f6112a2565b60ff16610dc79190611c22565b6064610dd39190611a73565b9050919050565b60006010610de98360106112a2565b60ff16610df69190611c22565b6064610e029190611a73565b9050919050565b60006010610e188360116112a2565b60ff16610e259190611c22565b600a610e319190611a73565b9050919050565b60006010610e478360126112a2565b60ff16610e549190611c22565b600a610e609190611a73565b9050919050565b600080610e72611358565b610e7a611358565b6000806000610e8889610dab565b90506000610e958a610dda565b90506000610ea28b610e09565b90506000610eaf8c610e38565b905060005b600a81101561107857600080600283610ecd91906119df565b1415610ee9578590508386610ee29190611a73565b9550610efb565b8490508285610ef89190611a73565b94505b600060048383610f0b9190611a73565b610f1591906119df565b1415611063576000610f338f846013610f2e9190611a73565b6112a2565b60ff169050610f406113bc565b600181600060038110610f5657610f55611ac9565b5b6020020181815250508e8015610f8e575060006003838686610f789190611a73565b610f829190611a73565b610f8c91906119df565b145b15610ffd57600181600160038110610fa957610fa8611ac9565b5b602002018181525050610100602183610fc29190611c53565b610fcc9190611c22565b81600260038110610fe057610fdf611ac9565b5b602002018181525050600189610ff69190611a73565b9850611035565b610100603e8361100d9190611c53565b6110179190611c22565b8160026003811061102b5761102a611ac9565b5b6020020181815250505b808b85600a811061104957611048611ac9565b5b602002018190525060018a61105e9190611a73565b995050505b506001816110719190611a73565b9050610eb4565b50848688995099509950505050505050509250925092565b606060008214156110d8576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611214565b600082905060005b6000821461110a5780806110f390611cad565b915050600a826111039190611c22565b91506110e0565b60008167ffffffffffffffff8111156111265761112561151a565b5b6040519080825280601f01601f1916602001820160405280156111585781602001600182028036833780820191505090505b50905060008290505b6000861461120c576001816111769190611a3f565b90506000600a80886111889190611c22565b6111929190611c53565b8761119d9190611a3f565b60306111a99190611d03565b905060008160f81b9050808484815181106111c7576111c6611ac9565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a886112039190611c22565b97505050611161565b819450505050505b919050565b6060828260405160200161122e929190611dac565b604051602081830303815290604052905092915050565b6060828260405160200161125a929190611e6f565b604051602081830303815290604052905092915050565b60608383838660405160200161128a9493929190611f0c565b60405160208183030381529060405290509392505050565b6000816001836112b29190611a73565b10156112f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ea90611fe1565b60405180910390fd5b6001826113009190611a73565b83511015611343576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133a9061204d565b60405180910390fd5b60008260018501015190508091505092915050565b604051806101400160405280600a905b6113706113bc565b8152602001906001900390816113685790505090565b6040518060c001604052806060815260200160608152602001606081526020016060815260200160608152602001606081525090565b6040518060600160405280600390602082028036833780820191505090505090565b6000604051905090565b600080fd5b600080fd5b6000819050919050565b611405816113f2565b811461141057600080fd5b50565b600081359050611422816113fc565b92915050565b60006020828403121561143e5761143d6113e8565b5b600061144c84828501611413565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561148f578082015181840152602081019050611474565b8381111561149e576000848401525b50505050565b6000601f19601f8301169050919050565b60006114c082611455565b6114ca8185611460565b93506114da818560208601611471565b6114e3816114a4565b840191505092915050565b6000602082019050818103600083015261150881846114b5565b905092915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b611552826114a4565b810181811067ffffffffffffffff821117156115715761157061151a565b5b80604052505050565b60006115846113de565b90506115908282611549565b919050565b600067ffffffffffffffff8211156115b0576115af61151a565b5b6115b9826114a4565b9050602081019050919050565b82818337600083830152505050565b60006115e86115e384611595565b61157a565b90508281526020810184848401111561160457611603611515565b5b61160f8482856115c6565b509392505050565b600082601f83011261162c5761162b611510565b5b813561163c8482602086016115d5565b91505092915050565b60008115159050919050565b61165a81611645565b811461166557600080fd5b50565b60008135905061167781611651565b92915050565b60008060408385031215611694576116936113e8565b5b600083013567ffffffffffffffff8111156116b2576116b16113ed565b5b6116be85828601611617565b92505060206116cf85828601611668565b9150509250929050565b600080fd5b600080fd5b600067ffffffffffffffff8211156116fe576116fd61151a565b5b611707826114a4565b9050602081019050919050565b6000611727611722846116e3565b61157a565b90508281526020810184848401111561174357611742611515565b5b61174e8482856115c6565b509392505050565b600082601f83011261176b5761176a611510565b5b813561177b848260208601611714565b91505092915050565b600060c0828403121561179a576117996116d9565b5b6117a460c061157a565b9050600082013567ffffffffffffffff8111156117c4576117c36116de565b5b6117d084828501611756565b600083015250602082013567ffffffffffffffff8111156117f4576117f36116de565b5b61180084828501611756565b602083015250604082013567ffffffffffffffff811115611824576118236116de565b5b61183084828501611756565b604083015250606082013567ffffffffffffffff811115611854576118536116de565b5b61186084828501611756565b606083015250608082013567ffffffffffffffff811115611884576118836116de565b5b61189084828501611756565b60808301525060a082013567ffffffffffffffff8111156118b4576118b36116de565b5b6118c084828501611756565b60a08301525092915050565b600080600080608085870312156118e6576118e56113e8565b5b600085013567ffffffffffffffff811115611904576119036113ed565b5b61191087828801611784565b945050602061192187828801611413565b935050604061193287828801611413565b925050606061194387828801611668565b91505092959194509250565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061199657607f821691505b602082108114156119aa576119a961194f565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006119ea826113f2565b91506119f5836113f2565b925082611a0557611a046119b0565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000611a4a826113f2565b9150611a55836113f2565b925082821015611a6857611a67611a10565b5b828203905092915050565b6000611a7e826113f2565b9150611a89836113f2565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115611abe57611abd611a10565b5b828201905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081905092915050565b6000611b0e82611455565b611b188185611af8565b9350611b28818560208601611471565b80840191505092915050565b6000611b408285611b03565b9150611b4c8284611b03565b91508190509392505050565b6000611b648289611b03565b9150611b708288611b03565b9150611b7c8287611b03565b9150611b888286611b03565b9150611b948285611b03565b9150611ba08284611b03565b9150819050979650505050505050565b6000611bbc828b611b03565b9150611bc8828a611b03565b9150611bd48289611b03565b9150611be08288611b03565b9150611bec8287611b03565b9150611bf88286611b03565b9150611c048285611b03565b9150611c108284611b03565b91508190509998505050505050505050565b6000611c2d826113f2565b9150611c38836113f2565b925082611c4857611c476119b0565b5b828204905092915050565b6000611c5e826113f2565b9150611c69836113f2565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615611ca257611ca1611a10565b5b828202905092915050565b6000611cb8826113f2565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415611ceb57611cea611a10565b5b600182019050919050565b600060ff82169050919050565b6000611d0e82611cf6565b9150611d1983611cf6565b92508260ff03821115611d2f57611d2e611a10565b5b828201905092915050565b7f3d00000000000000000000000000000000000000000000000000000000000000815250565b7f2200000000000000000000000000000000000000000000000000000000000000815250565b7f2220000000000000000000000000000000000000000000000000000000000000815250565b6000611db88285611b03565b9150611dc382611d3a565b600182019150611dd282611d60565b600182019150611de28284611b03565b9150611ded82611d86565b6002820191508190509392505050565b7f3c00000000000000000000000000000000000000000000000000000000000000815250565b7f2000000000000000000000000000000000000000000000000000000000000000815250565b7f2f3e000000000000000000000000000000000000000000000000000000000000815250565b6000611e7a82611dfd565b600182019150611e8a8285611b03565b9150611e9582611e23565b600182019150611ea58284611b03565b9150611eb082611e49565b6002820191508190509392505050565b7f3e00000000000000000000000000000000000000000000000000000000000000815250565b7f3c2f000000000000000000000000000000000000000000000000000000000000815250565b6000611f1782611dfd565b600182019150611f278287611b03565b9150611f3282611e23565b600182019150611f428286611b03565b9150611f4d82611ec0565b600182019150611f5d8285611b03565b9150611f6882611ee6565b600282019150611f788284611b03565b9150611f8382611ec0565b60018201915081905095945050505050565b7f746f55696e74385f6f766572666c6f7700000000000000000000000000000000600082015250565b6000611fcb601083611460565b9150611fd682611f95565b602082019050919050565b60006020820190508181036000830152611ffa81611fbe565b9050919050565b7f746f55696e74385f6f75744f66426f756e647300000000000000000000000000600082015250565b6000612037601383611460565b915061204282612001565b602082019050919050565b600060208201905081810360008301526120668161202a565b905091905056fea2646970667358221220fdd17e6def2e95eec1a14575cdd17b0f255d5bd48d668982e4303ffba99f75cd64736f6c634300080c0033608060405234801561001057600080fd5b50613f23806100206000396000f3fe608060405234801561001057600080fd5b506004361061002b5760003560e01c8063d95914e814610030575b600080fd5b61004a600480360381019061004591906134e8565b610060565b60405161005791906135b9565b60405180910390f35b606061006a6100a3565b610072610ba0565b61007b84611360565b60405160200161008d93929190613617565b6040516020818303038152906040529050919050565b60606107486040518060400160405280600481526020017f6d61736b000000000000000000000000000000000000000000000000000000008152506101526040518060400160405280600281526020017f69640000000000000000000000000000000000000000000000000000000000008152506040518060400160405280600a81526020017f6375746f75744d61736b00000000000000000000000000000000000000000000815250611d3e565b61015a611d6a565b61043e6101d16040518060400160405280600181526020017f78000000000000000000000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f3131380000000000000000000000000000000000000000000000000000000000815250611d3e565b6102456040518060400160405280600181526020017f79000000000000000000000000000000000000000000000000000000000000008152506040518060400160405280600281526020017f3535000000000000000000000000000000000000000000000000000000000000815250611d3e565b6102b96040518060400160405280600581526020017f77696474680000000000000000000000000000000000000000000000000000008152506040518060400160405280600281526020017f3634000000000000000000000000000000000000000000000000000000000000815250611d3e565b61032d6040518060400160405280600681526020017f68656967687400000000000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f3130380000000000000000000000000000000000000000000000000000000000815250611d3e565b6103a16040518060400160405280600281526020017f72790000000000000000000000000000000000000000000000000000000000008152506040518060400160405280600281526020017f3330000000000000000000000000000000000000000000000000000000000000815250611d3e565b6104156040518060400160405280600281526020017f72780000000000000000000000000000000000000000000000000000000000008152506040518060400160405280600281526020017f3330000000000000000000000000000000000000000000000000000000000000815250611d3e565b60405160200161042a96959493929190613648565b604051602081830303815290604052611ef6565b6107226104b56040518060400160405280600181526020017f78000000000000000000000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f3131380000000000000000000000000000000000000000000000000000000000815250611d3e565b6105296040518060400160405280600181526020017f79000000000000000000000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f3131300000000000000000000000000000000000000000000000000000000000815250611d3e565b61059d6040518060400160405280600581526020017f77696474680000000000000000000000000000000000000000000000000000008152506040518060400160405280600281526020017f3634000000000000000000000000000000000000000000000000000000000000815250611d3e565b6106116040518060400160405280600681526020017f68656967687400000000000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f3134300000000000000000000000000000000000000000000000000000000000815250611d3e565b6106856040518060400160405280600281526020017f72790000000000000000000000000000000000000000000000000000000000008152506040518060400160405280600281526020017f3330000000000000000000000000000000000000000000000000000000000000815250611d3e565b6106f96040518060400160405280600281526020017f72780000000000000000000000000000000000000000000000000000000000008152506040518060400160405280600281526020017f3330000000000000000000000000000000000000000000000000000000000000815250611d3e565b60405160200161070e96959493929190613648565b604051602081830303815290604052611ef6565b60405160200161073493929190613617565b604051602081830303815290604052611f3e565b610b7b6040518060400160405280600481526020017f6d61736b000000000000000000000000000000000000000000000000000000008152506107f56040518060400160405280600281526020017f69640000000000000000000000000000000000000000000000000000000000008152506040518060400160405280601181526020017f746f705265666c656374696f6e4d61736b000000000000000000000000000000815250611d3e565b6107fd611d6a565b610b566108746040518060400160405280600181526020017f78000000000000000000000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f3132320000000000000000000000000000000000000000000000000000000000815250611d3e565b6108e86040518060400160405280600181526020017f79000000000000000000000000000000000000000000000000000000000000008152506040518060400160405280600281526020017f3535000000000000000000000000000000000000000000000000000000000000815250611d3e565b61095c6040518060400160405280600581526020017f77696474680000000000000000000000000000000000000000000000000000008152506040518060400160405280600281526020017f3536000000000000000000000000000000000000000000000000000000000000815250611d3e565b6109d06040518060400160405280600681526020017f68656967687400000000000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f3139300000000000000000000000000000000000000000000000000000000000815250611d3e565b610a446040518060400160405280600281526020017f72790000000000000000000000000000000000000000000000000000000000008152506040518060400160405280600281526020017f3330000000000000000000000000000000000000000000000000000000000000815250611d3e565b610ab86040518060400160405280600281526020017f72780000000000000000000000000000000000000000000000000000000000008152506040518060400160405280600281526020017f3330000000000000000000000000000000000000000000000000000000000000815250611d3e565b610b2c6040518060400160405280600481526020017f66696c6c000000000000000000000000000000000000000000000000000000008152506040518060400160405280600581526020017f626c61636b000000000000000000000000000000000000000000000000000000815250611d3e565b604051602001610b4297969594939291906136a0565b604051602081830303815290604052611ef6565b604051602001610b67929190613705565b604051602081830303815290604052611f3e565b604051602001610b8c929190613705565b604051602081830303815290604052905090565b6060610d646040518060400160405280600881526020017f636c697050617468000000000000000000000000000000000000000000000000815250610c4f6040518060400160405280600281526020017f69640000000000000000000000000000000000000000000000000000000000008152506040518060400160405280600a81526020017f636c6970426f74746f6d00000000000000000000000000000000000000000000815250611d3e565b610d5f610cc66040518060400160405280600681526020017f68656967687400000000000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f3135300000000000000000000000000000000000000000000000000000000000815250611d3e565b610d3a6040518060400160405280600581526020017f77696474680000000000000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f3330300000000000000000000000000000000000000000000000000000000000815250611d3e565b604051602001610d4b929190613705565b604051602081830303815290604052611ef6565b611f3e565b61133b6040518060400160405280600881526020017f636c697050617468000000000000000000000000000000000000000000000000815250610e116040518060400160405280600281526020017f69640000000000000000000000000000000000000000000000000000000000008152506040518060400160405280600a81526020017f636c6970536861646f7700000000000000000000000000000000000000000000815250611d3e565b610f96610e886040518060400160405280600181526020017f79000000000000000000000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f3232300000000000000000000000000000000000000000000000000000000000815250611d3e565b610efc6040518060400160405280600681526020017f68656967687400000000000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f3330300000000000000000000000000000000000000000000000000000000000815250611d3e565b610f706040518060400160405280600581526020017f77696474680000000000000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f3330300000000000000000000000000000000000000000000000000000000000815250611d3e565b604051602001610f8293929190613617565b604051602081830303815290604052611ef6565b61111b61100d6040518060400160405280600181526020017f79000000000000000000000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f3138300000000000000000000000000000000000000000000000000000000000815250611d3e565b6110816040518060400160405280600681526020017f68656967687400000000000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f3330300000000000000000000000000000000000000000000000000000000000815250611d3e565b6110f56040518060400160405280600581526020017f77696474680000000000000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f3131350000000000000000000000000000000000000000000000000000000000815250611d3e565b60405160200161110793929190613617565b604051602081830303815290604052611ef6565b6113156111926040518060400160405280600181526020017f79000000000000000000000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f3138300000000000000000000000000000000000000000000000000000000000815250611d3e565b6112066040518060400160405280600181526020017f78000000000000000000000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f3138350000000000000000000000000000000000000000000000000000000000815250611d3e565b61127a6040518060400160405280600681526020017f68656967687400000000000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f3330300000000000000000000000000000000000000000000000000000000000815250611d3e565b6112ee6040518060400160405280600581526020017f77696474680000000000000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f3131350000000000000000000000000000000000000000000000000000000000815250611d3e565b6040516020016113019493929190613729565b604051602081830303815290604052611ef6565b60405160200161132793929190613617565b604051602081830303815290604052611f3e565b60405160200161134c929190613705565b604051602081830303815290604052905090565b606061136b82611f6f565b6119396113e26040518060400160405280600281526020017f69640000000000000000000000000000000000000000000000000000000000008152506040518060400160405280601081526020017f64726f70536861646f7746696c74657200000000000000000000000000000000815250611d3e565b6114566040518060400160405280600681526020017f68656967687400000000000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f3330300000000000000000000000000000000000000000000000000000000000815250611d3e565b6114ca6040518060400160405280600581526020017f77696474680000000000000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f3330300000000000000000000000000000000000000000000000000000000000815250611d3e565b61153e6040518060400160405280600181526020017f79000000000000000000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f2d32352500000000000000000000000000000000000000000000000000000000815250611d3e565b6115b26040518060400160405280600181526020017f78000000000000000000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f2d35302500000000000000000000000000000000000000000000000000000000815250611d3e565b6040516020016115c6959493929190613767565b60405160208183030381529060405261171b6040518060400160405280600e81526020017f6665476175737369616e426c75720000000000000000000000000000000000008152506116826040518060400160405280600281526020017f696e0000000000000000000000000000000000000000000000000000000000008152506040518060400160405280600b81526020017f536f75726365416c706861000000000000000000000000000000000000000000815250611d3e565b6116f66040518060400160405280600c81526020017f737464446576696174696f6e00000000000000000000000000000000000000008152506040518060400160405280600181526020017f3600000000000000000000000000000000000000000000000000000000000000815250611d3e565b604051602001611707929190613705565b604051602081830303815290604052612595565b6117cd6040518060400160405280600881526020017f66654f66667365740000000000000000000000000000000000000000000000008152506117c86040518060400160405280600281526020017f64790000000000000000000000000000000000000000000000000000000000008152506040518060400160405280600181526020017f3800000000000000000000000000000000000000000000000000000000000000815250611d3e565b612595565b6119136040518060400160405280600b81526020017f6665436f6d706f7369746500000000000000000000000000000000000000000081525061187a6040518060400160405280600881526020017f6f70657261746f720000000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f6f75740000000000000000000000000000000000000000000000000000000000815250611d3e565b6118ee6040518060400160405280600381526020017f696e3200000000000000000000000000000000000000000000000000000000008152506040518060400160405280600b81526020017f536f75726365416c706861000000000000000000000000000000000000000000815250611d3e565b6040516020016118ff929190613705565b604051602081830303815290604052612595565b60405160200161192593929190613617565b6040516020818303038152906040526125c1565b6119428461260b565b611d156119b96040518060400160405280600281526020017f69640000000000000000000000000000000000000000000000000000000000008152506040518060400160405280601181526020017f736f6c696454657874424746696c746572000000000000000000000000000000815250611d3e565b6040516020016119c991906137b2565b604051602081830303815290604052611b1e6040518060400160405280600781526020017f6665466c6f6f6400000000000000000000000000000000000000000000000000815250611a856040518060400160405280600b81526020017f666c6f6f642d636f6c6f720000000000000000000000000000000000000000008152506040518060400160405280600581526020017f7768697465000000000000000000000000000000000000000000000000000000815250611d3e565b611af96040518060400160405280600681526020017f726573756c7400000000000000000000000000000000000000000000000000008152506040518060400160405280600281526020017f6267000000000000000000000000000000000000000000000000000000000000815250611d3e565b604051602001611b0a929190613705565b604051602081830303815290604052612595565b611cf06040518060400160405280600781526020017f66654d657267650000000000000000000000000000000000000000000000000081525060405180602001604052806000815250611c196040518060400160405280600b81526020017f66654d657267654e6f6465000000000000000000000000000000000000000000815250611c146040518060400160405280600281526020017f696e0000000000000000000000000000000000000000000000000000000000008152506040518060400160405280600281526020017f6267000000000000000000000000000000000000000000000000000000000000815250611d3e565b612595565b611ccb6040518060400160405280600b81526020017f66654d657267654e6f6465000000000000000000000000000000000000000000815250611cc66040518060400160405280600281526020017f696e0000000000000000000000000000000000000000000000000000000000008152506040518060400160405280600d81526020017f536f757263654772617068696300000000000000000000000000000000000000815250611d3e565b612595565b604051602001611cdc929190613705565b604051602081830303815290604052611f3e565b604051602001611d01929190613705565b6040516020818303038152906040526125c1565b604051602001611d289493929190613729565b6040516020818303038152906040529050919050565b60608282604051602001611d5392919061383b565b604051602081830303815290604052905092915050565b6060611ef1611de36040518060400160405280600581526020017f77696474680000000000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f3130302500000000000000000000000000000000000000000000000000000000815250611d3e565b611e576040518060400160405280600681526020017f68656967687400000000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f3130302500000000000000000000000000000000000000000000000000000000815250611d3e565b611ecb6040518060400160405280600481526020017f66696c6c000000000000000000000000000000000000000000000000000000008152506040518060400160405280600581526020017f7768697465000000000000000000000000000000000000000000000000000000815250611d3e565b604051602001611edd93929190613617565b604051602081830303815290604052611ef6565b905090565b6060611f376040518060400160405280600481526020017f726563740000000000000000000000000000000000000000000000000000000081525083612595565b9050919050565b606083838386604051602001611f579493929190613924565b60405160208183030381529060405290509392505050565b60606000611f7c83612bed565b90506000611f8984612c04565b90506000611f9685612c33565b905061258b61200f6040518060400160405280600281526020017f69640000000000000000000000000000000000000000000000000000000000008152506040518060400160405280600a81526020017f73616e6446696c74657200000000000000000000000000000000000000000000815250611d3e565b6120836040518060400160405280600681526020017f68656967687400000000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f3830302500000000000000000000000000000000000000000000000000000000815250611d3e565b6120f76040518060400160405280600181526020017f79000000000000000000000000000000000000000000000000000000000000008152506040518060400160405280600581526020017f2d32353025000000000000000000000000000000000000000000000000000000815250611d3e565b60405160200161210993929190613617565b6040516020818303038152906040526122ee6040518060400160405280600c81526020017f666554757262756c656e636500000000000000000000000000000000000000008152506121c56040518060400160405280600d81526020017f626173654672657175656e6379000000000000000000000000000000000000008152506040518060400160405280600481526020017f302e303100000000000000000000000000000000000000000000000000000000815250611d3e565b61220c6040518060400160405280600a81526020017f6e756d4f6374617665730000000000000000000000000000000000000000000081525061220788612c62565b611d3e565b6122536040518060400160405280600481526020017f736565640000000000000000000000000000000000000000000000000000000081525061224e8b612c62565b611d3e565b6122c76040518060400160405280600681526020017f726573756c7400000000000000000000000000000000000000000000000000008152506040518060400160405280600581526020017f7475726273000000000000000000000000000000000000000000000000000000815250611d3e565b6040516020016122da9493929190613729565b604051602081830303815290604052612595565b6125666040518060400160405280601181526020017f6665446973706c6163656d656e744d617000000000000000000000000000000081525061239b6040518060400160405280600381526020017f696e3200000000000000000000000000000000000000000000000000000000008152506040518060400160405280600581526020017f7475726273000000000000000000000000000000000000000000000000000000815250611d3e565b61240f6040518060400160405280600281526020017f696e0000000000000000000000000000000000000000000000000000000000008152506040518060400160405280600d81526020017f536f757263654772617068696300000000000000000000000000000000000000815250611d3e565b6124566040518060400160405280600581526020017f7363616c650000000000000000000000000000000000000000000000000000008152506124518b612c62565b611d3e565b6124ca6040518060400160405280601081526020017f784368616e6e656c53656c6563746f72000000000000000000000000000000008152506040518060400160405280600181526020017f5200000000000000000000000000000000000000000000000000000000000000815250611d3e565b61253e6040518060400160405280601081526020017f794368616e6e656c53656c6563746f72000000000000000000000000000000008152506040518060400160405280600181526020017f4700000000000000000000000000000000000000000000000000000000000000815250611d3e565b604051602001612552959493929190613767565b604051602081830303815290604052612595565b604051602001612577929190613705565b6040516020818303038152906040526125c1565b9350505050919050565b606082826040516020016125aa9291906139d3565b604051602081830303815290604052905092915050565b60606126036040518060400160405280600681526020017f66696c74657200000000000000000000000000000000000000000000000000008152508484611f3e565b905092915050565b60608060608061261c856000612deb565b9250612629856001612deb565b9150612636856002612deb565b9050600061264386612e96565b9050600061265087612ead565b9050612be16126c96040518060400160405280600281526020017f69640000000000000000000000000000000000000000000000000000000000008152506040518060400160405280600e81526020017f66696e6553616e6446696c746572000000000000000000000000000000000000815250611d3e565b6126d38484612edc565b612bbc6040518060400160405280601381526020017f6665436f6d706f6e656e745472616e73666572000000000000000000000000008152506040518060200160405280600081525061282d6040518060400160405280600781526020017f666546756e6352000000000000000000000000000000000000000000000000008152506127c96040518060400160405280600481526020017f74797065000000000000000000000000000000000000000000000000000000008152506040518060400160405280600581526020017f67616d6d61000000000000000000000000000000000000000000000000000000815250611d3e565b6128086040518060400160405280600681526020017f6f666673657400000000000000000000000000000000000000000000000000008152508f611d3e565b604051602001612819929190613705565b604051602081830303815290604052612595565b61293e6040518060400160405280600781526020017f666546756e6347000000000000000000000000000000000000000000000000008152506128da6040518060400160405280600481526020017f74797065000000000000000000000000000000000000000000000000000000008152506040518060400160405280600581526020017f67616d6d61000000000000000000000000000000000000000000000000000000815250611d3e565b6129196040518060400160405280600681526020017f6f666673657400000000000000000000000000000000000000000000000000008152508f611d3e565b60405160200161292a929190613705565b604051602081830303815290604052612595565b612a4f6040518060400160405280600781526020017f666546756e6342000000000000000000000000000000000000000000000000008152506129eb6040518060400160405280600481526020017f74797065000000000000000000000000000000000000000000000000000000008152506040518060400160405280600581526020017f67616d6d61000000000000000000000000000000000000000000000000000000815250611d3e565b612a2a6040518060400160405280600681526020017f6f666673657400000000000000000000000000000000000000000000000000008152508f611d3e565b604051602001612a3b929190613705565b604051602081830303815290604052612595565b612b956040518060400160405280600781526020017f666546756e634100000000000000000000000000000000000000000000000000815250612afc6040518060400160405280600481526020017f74797065000000000000000000000000000000000000000000000000000000008152506040518060400160405280600681526020017f6c696e6561720000000000000000000000000000000000000000000000000000815250611d3e565b612b706040518060400160405280600981526020017f696e7465726365707400000000000000000000000000000000000000000000008152506040518060400160405280600181526020017f3100000000000000000000000000000000000000000000000000000000000000815250611d3e565b604051602001612b81929190613705565b604051602081830303815290604052612595565b604051602001612ba89493929190613729565b604051602081830303815290604052611f3e565b604051602001612bcd929190613705565b6040516020818303038152906040526125c1565b95505050505050919050565b6000612bfa8260046130bc565b60ff169050919050565b60006008612c138360056130bc565b60ff16612c209190613a8c565b6001612c2c9190613abd565b9050919050565b60006040612c428360066130bc565b60ff16612c4f9190613a8c565b6001612c5b9190613abd565b9050919050565b60606000821415612caa576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612de6565b600082905060005b60008214612cdc578080612cc590613b13565b915050600a82612cd59190613a8c565b9150612cb2565b60008167ffffffffffffffff811115612cf857612cf76133bd565b5b6040519080825280601f01601f191660200182016040528015612d2a5781602001600182028036833780820191505090505b50905060008290505b60008614612dde57600181612d489190613b5c565b90506000600a8088612d5a9190613a8c565b612d649190613b90565b87612d6f9190613b5c565b6030612d7b9190613bf7565b905060008160f81b905080848481518110612d9957612d98613c2e565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a88612dd59190613a8c565b97505050612d33565b819450505050505b919050565b60606000612df98484613172565b90506000612e0785856131f8565b905060006040518060200160405280600081525090506001831415612e5f576040518060400160405280600181526020017f2d0000000000000000000000000000000000000000000000000000000000000081525090505b80612e6b8360016132a5565b604051602001612e7c929190613705565b604051602081830303815290604052935050505092915050565b6000612ea38260076130bc565b60ff169050919050565b60006040612ebc8360086130bc565b60ff16612ec99190613a8c565b6001612ed59190613abd565b9050919050565b60606130b46040518060400160405280600c81526020017f666554757262756c656e63650000000000000000000000000000000000000000815250612f8b6040518060400160405280600d81526020017f626173654672657175656e6379000000000000000000000000000000000000008152506040518060400160405280600481526020017f302e303100000000000000000000000000000000000000000000000000000000815250611d3e565b612fd26040518060400160405280600a81526020017f6e756d4f63746176657300000000000000000000000000000000000000000000815250612fcd87612c62565b611d3e565b6130196040518060400160405280600481526020017f736565640000000000000000000000000000000000000000000000000000000081525061301489612c62565b611d3e565b61308d6040518060400160405280600681526020017f726573756c7400000000000000000000000000000000000000000000000000008152506040518060400160405280600581526020017f7475726273000000000000000000000000000000000000000000000000000000815250611d3e565b6040516020016130a09493929190613729565b604051602081830303815290604052612595565b905092915050565b6000816001836130cc9190613abd565b101561310d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161310490613ca9565b60405180910390fd5b60018261311a9190613abd565b8351101561315d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161315490613d15565b60405180910390fd5b60008260018501015190508091505092915050565b60008082141561319d5760806131898460096130bc565b60ff166131969190613a8c565b90506131f2565b60018214156131c75760806131b384600a6130bc565b60ff166131c09190613a8c565b90506131f2565b60028214156131f15760806131dd84600b6130bc565b60ff166131ea9190613a8c565b90506131f2565b5b92915050565b60008082141561323057610100606461321285600c6130bc565b60ff1661321f9190613b90565b6132299190613a8c565b905061329f565b600182141561326757610100606461324985600d6130bc565b60ff166132569190613b90565b6132609190613a8c565b905061329f565b600282141561329e57610100606461328085600e6130bc565b60ff1661328d9190613b90565b6132979190613a8c565b905061329f565b5b92915050565b606060018214156132df576132b983612c62565b6040516020016132c99190613d81565b6040516020818303038152906040529050613388565b6002821415613317576132f183612c62565b6040516020016133019190613def565b6040516020818303038152906040529050613388565b600382141561334f5761332983612c62565b6040516020016133399190613e5d565b6040516020818303038152906040529050613388565b60048214156133875761336183612c62565b6040516020016133719190613ecb565b6040516020818303038152906040529050613388565b5b92915050565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6133f5826133ac565b810181811067ffffffffffffffff82111715613414576134136133bd565b5b80604052505050565b600061342761338e565b905061343382826133ec565b919050565b600067ffffffffffffffff821115613453576134526133bd565b5b61345c826133ac565b9050602081019050919050565b82818337600083830152505050565b600061348b61348684613438565b61341d565b9050828152602081018484840111156134a7576134a66133a7565b5b6134b2848285613469565b509392505050565b600082601f8301126134cf576134ce6133a2565b5b81356134df848260208601613478565b91505092915050565b6000602082840312156134fe576134fd613398565b5b600082013567ffffffffffffffff81111561351c5761351b61339d565b5b613528848285016134ba565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561356b578082015181840152602081019050613550565b8381111561357a576000848401525b50505050565b600061358b82613531565b613595818561353c565b93506135a581856020860161354d565b6135ae816133ac565b840191505092915050565b600060208201905081810360008301526135d38184613580565b905092915050565b600081905092915050565b60006135f182613531565b6135fb81856135db565b935061360b81856020860161354d565b80840191505092915050565b600061362382866135e6565b915061362f82856135e6565b915061363b82846135e6565b9150819050949350505050565b600061365482896135e6565b915061366082886135e6565b915061366c82876135e6565b915061367882866135e6565b915061368482856135e6565b915061369082846135e6565b9150819050979650505050505050565b60006136ac828a6135e6565b91506136b882896135e6565b91506136c482886135e6565b91506136d082876135e6565b91506136dc82866135e6565b91506136e882856135e6565b91506136f482846135e6565b915081905098975050505050505050565b600061371182856135e6565b915061371d82846135e6565b91508190509392505050565b600061373582876135e6565b915061374182866135e6565b915061374d82856135e6565b915061375982846135e6565b915081905095945050505050565b600061377382886135e6565b915061377f82876135e6565b915061378b82866135e6565b915061379782856135e6565b91506137a382846135e6565b91508190509695505050505050565b60006137be82846135e6565b915081905092915050565b7f3d00000000000000000000000000000000000000000000000000000000000000815250565b7f2200000000000000000000000000000000000000000000000000000000000000815250565b7f2220000000000000000000000000000000000000000000000000000000000000815250565b600061384782856135e6565b9150613852826137c9565b600182019150613861826137ef565b60018201915061387182846135e6565b915061387c82613815565b6002820191508190509392505050565b7f3c00000000000000000000000000000000000000000000000000000000000000815250565b7f2000000000000000000000000000000000000000000000000000000000000000815250565b7f3e00000000000000000000000000000000000000000000000000000000000000815250565b7f3c2f000000000000000000000000000000000000000000000000000000000000815250565b600061392f8261388c565b60018201915061393f82876135e6565b915061394a826138b2565b60018201915061395a82866135e6565b9150613965826138d8565b60018201915061397582856135e6565b9150613980826138fe565b60028201915061399082846135e6565b915061399b826138d8565b60018201915081905095945050505050565b7f2f3e000000000000000000000000000000000000000000000000000000000000815250565b60006139de8261388c565b6001820191506139ee82856135e6565b91506139f9826138b2565b600182019150613a0982846135e6565b9150613a14826139ad565b6002820191508190509392505050565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613a9782613a24565b9150613aa283613a24565b925082613ab257613ab1613a2e565b5b828204905092915050565b6000613ac882613a24565b9150613ad383613a24565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613b0857613b07613a5d565b5b828201905092915050565b6000613b1e82613a24565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613b5157613b50613a5d565b5b600182019050919050565b6000613b6782613a24565b9150613b7283613a24565b925082821015613b8557613b84613a5d565b5b828203905092915050565b6000613b9b82613a24565b9150613ba683613a24565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613bdf57613bde613a5d565b5b828202905092915050565b600060ff82169050919050565b6000613c0282613bea565b9150613c0d83613bea565b92508260ff03821115613c2357613c22613a5d565b5b828201905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f746f55696e74385f6f766572666c6f7700000000000000000000000000000000600082015250565b6000613c9360108361353c565b9150613c9e82613c5d565b602082019050919050565b60006020820190508181036000830152613cc281613c86565b9050919050565b7f746f55696e74385f6f75744f66426f756e647300000000000000000000000000600082015250565b6000613cff60138361353c565b9150613d0a82613cc9565b602082019050919050565b60006020820190508181036000830152613d2e81613cf2565b9050919050565b7f302e000000000000000000000000000000000000000000000000000000000000600082015250565b6000613d6b6002836135db565b9150613d7682613d35565b600282019050919050565b6000613d8c82613d5e565b9150613d9882846135e6565b915081905092915050565b7f302e300000000000000000000000000000000000000000000000000000000000600082015250565b6000613dd96003836135db565b9150613de482613da3565b600382019050919050565b6000613dfa82613dcc565b9150613e0682846135e6565b915081905092915050565b7f302e303000000000000000000000000000000000000000000000000000000000600082015250565b6000613e476004836135db565b9150613e5282613e11565b600482019050919050565b6000613e6882613e3a565b9150613e7482846135e6565b915081905092915050565b7f302e303030000000000000000000000000000000000000000000000000000000600082015250565b6000613eb56005836135db565b9150613ec082613e7f565b600582019050919050565b6000613ed682613ea8565b9150613ee282846135e6565b91508190509291505056fea26469706673582212201123b52f9d19aabf0e2a8c85277595e46013ee7e3bb83ca326dec265ac8be6ad64736f6c634300080c003300000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000f4fa7e95d8f115208841e97794a007997645f7c700000000000000000000000000000000000000000000000000000000633aeae000000000000000000000000000000000000000000000000000000000635fd4e07cc8028ca29b9825ff9247ea9ae162aefe188b90b2f671ff19850eb54e9d45df000000000000000000000000000000000000000000000000000000000000001943617073756c6573206f6620416c6c204f7572204c69766573000000000000000000000000000000000000000000000000000000000000000000000000000005434f414f4c000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x6080604052600436106101cd5760003560e01c80636d9ec494116100f7578063a48b3b8f11610095578063c87b56dd11610064578063c87b56dd14610694578063c884ef83146106d1578063e086e5ec1461070e578063e985e9c514610725576101cd565b8063a48b3b8f146105da578063aba048b414610617578063b88d4fde14610640578063c24a0f8b14610669576101cd565b80638da5cb5b116100d15780638da5cb5b1461051e5780638f9fe2ad1461054957806395d89b4114610586578063a22cb465146105b1576101cd565b80636d9ec4941461047957806370a08231146104a457806379b92f27146104e1576101cd565b80631c8fb73f1161016f57806342842e0e1161013e57806342842e0e146103ab5780634b44d812146103d45780636352211e1461041157806366d003ac1461044e576101cd565b80631c8fb73f1461031257806323b872dd1461032e578063303e74df14610357578063423d793914610382576101cd565b8063095ea7b3116101ab578063095ea7b3146102775780630b97bc86146102a05780630cd2356b146102cb5780631249c58b14610308576101cd565b806301ffc9a7146101d257806306fdde031461020f578063081812fc1461023a575b600080fd5b3480156101de57600080fd5b506101f960048036038101906101f49190612344565b610762565b604051610206919061238c565b60405180910390f35b34801561021b57600080fd5b50610224610844565b6040516102319190612440565b60405180910390f35b34801561024657600080fd5b50610261600480360381019061025c9190612498565b6108d6565b60405161026e9190612506565b60405180910390f35b34801561028357600080fd5b5061029e6004803603810190610299919061254d565b61095b565b005b3480156102ac57600080fd5b506102b5610a65565b6040516102c2919061259c565b60405180910390f35b3480156102d757600080fd5b506102f260048036038101906102ed9190612498565b610a6b565b6040516102ff9190612440565b60405180910390f35b610310610b18565b005b61032c60048036038101906103279190612498565b610b70565b005b34801561033a57600080fd5b50610355600480360381019061035091906125b7565b610bca565b005b34801561036357600080fd5b5061036c610c23565b6040516103799190612669565b60405180910390f35b34801561038e57600080fd5b506103a960048036038101906103a491906126e9565b610c49565b005b3480156103b757600080fd5b506103d260048036038101906103cd91906125b7565b610dfe565b005b3480156103e057600080fd5b506103fb60048036038101906103f69190612498565b610e1e565b6040516104089190612440565b60405180910390f35b34801561041d57600080fd5b5061043860048036038101906104339190612498565b610ef0565b6040516104459190612506565b60405180910390f35b34801561045a57600080fd5b50610463610fa2565b604051610470919061276a565b60405180910390f35b34801561048557600080fd5b5061048e610fc8565b60405161049b919061279e565b60405180910390f35b3480156104b057600080fd5b506104cb60048036038101906104c691906127b9565b610fce565b6040516104d8919061259c565b60405180910390f35b3480156104ed57600080fd5b5061050860048036038101906105039190612498565b611086565b6040516105159190612440565b60405180910390f35b34801561052a57600080fd5b50610533611158565b6040516105409190612506565b60405180910390f35b34801561055557600080fd5b50610570600480360381019061056b91906127e6565b61117e565b60405161057d9190612440565b60405180910390f35b34801561059257600080fd5b5061059b6111c2565b6040516105a89190612440565b60405180910390f35b3480156105bd57600080fd5b506105d860048036038101906105d39190612852565b611254565b005b3480156105e657600080fd5b5061060160048036038101906105fc9190612498565b6113c0565b60405161060e9190612440565b60405180910390f35b34801561062357600080fd5b5061063e60048036038101906106399190612892565b6113e0565b005b34801561064c57600080fd5b5061066760048036038101906106629190612a0f565b6113ef565b005b34801561067557600080fd5b5061067e61144a565b60405161068b919061259c565b60405180910390f35b3480156106a057600080fd5b506106bb60048036038101906106b69190612498565b611450565b6040516106c89190612440565b60405180910390f35b3480156106dd57600080fd5b506106f860048036038101906106f391906127b9565b6115ce565b604051610705919061238c565b60405180910390f35b34801561071a57600080fd5b506107236115ee565b005b34801561073157600080fd5b5061074c60048036038101906107479190612a92565b61167b565b604051610759919061238c565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061082d57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061083d575061083c826118d1565b5b9050919050565b60606000805461085390612b01565b80601f016020809104026020016040519081016040528092919081815260200182805461087f90612b01565b80156108cc5780601f106108a1576101008083540402835291602001916108cc565b820191906000526020600020905b8154815290600101906020018083116108af57829003601f168201915b5050505050905090565b60006108e18261193b565b610920576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161091790612ba5565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061096682610ef0565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156109d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109ce90612c37565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161480610a175750610a16813361167b565b5b610a56576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a4d90612cc9565b60405180910390fd5b610a6083836119a7565b505050565b60095481565b6060600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663effaaf6a8360016040518363ffffffff1660e01b8152600401610acb929190612ce9565b600060405180830381865afa158015610ae8573d6000803e3d6000fd5b505050506040513d6000823e3d601f19601f82011682018060405250810190610b119190612db3565b9050919050565b664e28e2290f0000341015610b62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5990612e48565b60405180910390fd5b610b6e33426001611a60565b565b670106e69ba1610000341015610bbb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bb290612e48565b60405180910390fd5b610bc733826000611a60565b50565b610bd43382611af8565b610c13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c0a90612eda565b60405180910390fd5b610c1e838383611bd6565b505050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60001515600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151514610cdc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cd390612f46565b60405180910390fd5b6001600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600081604051602001610d479190612fae565b604051602081830303815290604052805190602001209050610dad848480806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600d5483611e27565b610dec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610de390613015565b60405180910390fd5b610df882426001611a60565b50505050565b610e19838383604051806020016040528060008152506113ef565b505050565b60606000600b600084815260200190815260200160002060009054906101000a900460ff169050600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663effaaf6a84836040518363ffffffff1660e01b8152600401610ea2929190612ce9565b600060405180830381865afa158015610ebf573d6000803e3d6000fd5b505050506040513d6000823e3d601f19601f82011682018060405250810190610ee89190612db3565b915050919050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610f99576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f90906130a7565b60405180910390fd5b80915050919050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600d5481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561103f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103690613139565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60606000600b600084815260200190815260200160002060009054906101000a900460ff169050600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166337ee03ec84836040518363ffffffff1660e01b815260040161110a929190612ce9565b600060405180830381865afa158015611127573d6000803e3d6000fd5b505050506040513d6000823e3d601f19601f820116820180604052508101906111509190612db3565b915050919050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60606000838360405160200161119592919061317a565b6040516020818303038152906040528051906020012060001c90506111b981610e1e565b91505092915050565b6060600180546111d190612b01565b80601f01602080910402602001604051908101604052809291908181526020018280546111fd90612b01565b801561124a5780601f1061121f5761010080835404028352916020019161124a565b820191906000526020600020905b81548152906001019060200180831161122d57829003601f168201915b5050505050905090565b3373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156112c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ba906131f2565b60405180910390fd5b80600560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516113b4919061238c565b60405180910390a35050565b606060006113cd83610e1e565b90506113d881611e3e565b915050919050565b6113eb828233610c49565b5050565b6113f93383611af8565b611438576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142f90612eda565b60405180910390fd5b61144484848484611fc3565b50505050565b600a5481565b606061145b8261193b565b61149a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161149190613284565b60405180910390fd5b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663192a0a1f846040518263ffffffff1660e01b81526004016114f7919061259c565b600060405180830381865afa158015611514573d6000803e3d6000fd5b505050506040513d6000823e3d601f19601f8201168201806040525081019061153d9190612db3565b905060006040518060a0016040528060698152602001613d306069913990506000611567856113c0565b9050600061157486611086565b90506115a48484848460405160200161159094939291906134a8565b604051602081830303815290604052611e3e565b6040516020016115b49190613574565b604051602081830303815290604052945050505050919050565b600c6020528060005260406000206000915054906101000a900460ff1681565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051611634906135c7565b60006040518083038185875af1925050503d8060008114611671576040519150601f19603f3d011682016040523d82523d6000602084013e611676565b606091505b505050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561177f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161177690613628565b60405180910390fd5b6117888161193b565b156117c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117bf90613694565b60405180910390fd5b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461181891906136e3565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611a1a83610ef0565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6009544211611aa4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a9b90613785565b60405180910390fd5b600a544210611ae8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611adf906137f1565b60405180910390fd5b611af383838361201f565b505050565b6000611b038261193b565b611b42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b3990613883565b60405180910390fd5b6000611b4d83610ef0565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611bbc57508373ffffffffffffffffffffffffffffffffffffffff16611ba4846108d6565b73ffffffffffffffffffffffffffffffffffffffff16145b80611bcd5750611bcc818561167b565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611bf682610ef0565b73ffffffffffffffffffffffffffffffffffffffff1614611c4c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c4390613915565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611cbc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cb3906139a7565b60405180910390fd5b611cc76000826119a7565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611d1791906139c7565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611d6e91906136e3565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b600082611e348584612091565b1490509392505050565b6060600082511415611e6157604051806020016040528060008152509050611fbe565b6000604051806060016040528060408152602001613cf06040913990506000600360028551611e9091906136e3565b611e9a9190613a2a565b6004611ea69190613a5b565b90506000602082611eb791906136e3565b67ffffffffffffffff811115611ed057611ecf6128e4565b5b6040519080825280601f01601f191660200182016040528015611f025781602001600182028036833780820191505090505b509050818152600183018586518101602084015b81831015611f7d576003830192508251603f8160121c1685015160f81b8252600182019150603f81600c1c1685015160f81b8252600182019150603f8160061c1685015160f81b8252600182019150603f811685015160f81b825260018201915050611f16565b600389510660018114611f975760028114611fa757611fb2565b613d3d60f01b6002830352611fb2565b603d60f81b60018303525b50505050508093505050505b919050565b611fce848484611bd6565b611fda84848484612144565b612019576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161201090613b27565b60405180910390fd5b50505050565b6000828460405160200161203492919061317a565b6040516020818303038152906040528051906020012060001c905081156120815781600b600083815260200190815260200160002060006101000a81548160ff0219169083151502179055505b61208b848261170f565b50505050565b60008082905060005b84518110156121395760008582815181106120b8576120b7613b47565b5b602002602001015190508083116120f95782816040516020016120dc929190613b97565b604051602081830303815290604052805190602001209250612125565b808360405160200161210c929190613b97565b6040516020818303038152906040528051906020012092505b50808061213190613bc3565b91505061209a565b508091505092915050565b60006121658473ffffffffffffffffffffffffffffffffffffffff166122c5565b156122b8578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02338786866040518563ffffffff1660e01b81526004016121a99493929190613c61565b6020604051808303816000875af19250505080156121e557506040513d601f19601f820116820180604052508101906121e29190613cc2565b60015b612268573d8060008114612215576040519150601f19603f3d011682016040523d82523d6000602084013e61221a565b606091505b50600081511415612260576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161225790613b27565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506122bd565b600190505b949350505050565b600080823b905060008111915050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612321816122ec565b811461232c57600080fd5b50565b60008135905061233e81612318565b92915050565b60006020828403121561235a576123596122e2565b5b60006123688482850161232f565b91505092915050565b60008115159050919050565b61238681612371565b82525050565b60006020820190506123a1600083018461237d565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156123e15780820151818401526020810190506123c6565b838111156123f0576000848401525b50505050565b6000601f19601f8301169050919050565b6000612412826123a7565b61241c81856123b2565b935061242c8185602086016123c3565b612435816123f6565b840191505092915050565b6000602082019050818103600083015261245a8184612407565b905092915050565b6000819050919050565b61247581612462565b811461248057600080fd5b50565b6000813590506124928161246c565b92915050565b6000602082840312156124ae576124ad6122e2565b5b60006124bc84828501612483565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006124f0826124c5565b9050919050565b612500816124e5565b82525050565b600060208201905061251b60008301846124f7565b92915050565b61252a816124e5565b811461253557600080fd5b50565b60008135905061254781612521565b92915050565b60008060408385031215612564576125636122e2565b5b600061257285828601612538565b925050602061258385828601612483565b9150509250929050565b61259681612462565b82525050565b60006020820190506125b1600083018461258d565b92915050565b6000806000606084860312156125d0576125cf6122e2565b5b60006125de86828701612538565b93505060206125ef86828701612538565b925050604061260086828701612483565b9150509250925092565b6000819050919050565b600061262f61262a612625846124c5565b61260a565b6124c5565b9050919050565b600061264182612614565b9050919050565b600061265382612636565b9050919050565b61266381612648565b82525050565b600060208201905061267e600083018461265a565b92915050565b600080fd5b600080fd5b600080fd5b60008083601f8401126126a9576126a8612684565b5b8235905067ffffffffffffffff8111156126c6576126c5612689565b5b6020830191508360208202830111156126e2576126e161268e565b5b9250929050565b600080600060408486031215612702576127016122e2565b5b600084013567ffffffffffffffff8111156127205761271f6122e7565b5b61272c86828701612693565b9350935050602061273f86828701612538565b9150509250925092565b6000612754826124c5565b9050919050565b61276481612749565b82525050565b600060208201905061277f600083018461275b565b92915050565b6000819050919050565b61279881612785565b82525050565b60006020820190506127b3600083018461278f565b92915050565b6000602082840312156127cf576127ce6122e2565b5b60006127dd84828501612538565b91505092915050565b600080604083850312156127fd576127fc6122e2565b5b600061280b85828601612483565b925050602061281c85828601612538565b9150509250929050565b61282f81612371565b811461283a57600080fd5b50565b60008135905061284c81612826565b92915050565b60008060408385031215612869576128686122e2565b5b600061287785828601612538565b92505060206128888582860161283d565b9150509250929050565b600080602083850312156128a9576128a86122e2565b5b600083013567ffffffffffffffff8111156128c7576128c66122e7565b5b6128d385828601612693565b92509250509250929050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61291c826123f6565b810181811067ffffffffffffffff8211171561293b5761293a6128e4565b5b80604052505050565b600061294e6122d8565b905061295a8282612913565b919050565b600067ffffffffffffffff82111561297a576129796128e4565b5b612983826123f6565b9050602081019050919050565b82818337600083830152505050565b60006129b26129ad8461295f565b612944565b9050828152602081018484840111156129ce576129cd6128df565b5b6129d9848285612990565b509392505050565b600082601f8301126129f6576129f5612684565b5b8135612a0684826020860161299f565b91505092915050565b60008060008060808587031215612a2957612a286122e2565b5b6000612a3787828801612538565b9450506020612a4887828801612538565b9350506040612a5987828801612483565b925050606085013567ffffffffffffffff811115612a7a57612a796122e7565b5b612a86878288016129e1565b91505092959194509250565b60008060408385031215612aa957612aa86122e2565b5b6000612ab785828601612538565b9250506020612ac885828601612538565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612b1957607f821691505b60208210811415612b2d57612b2c612ad2565b5b50919050565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000612b8f602c836123b2565b9150612b9a82612b33565b604082019050919050565b60006020820190508181036000830152612bbe81612b82565b9050919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000612c216021836123b2565b9150612c2c82612bc5565b604082019050919050565b60006020820190508181036000830152612c5081612c14565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b6000612cb36038836123b2565b9150612cbe82612c57565b604082019050919050565b60006020820190508181036000830152612ce281612ca6565b9050919050565b6000604082019050612cfe600083018561258d565b612d0b602083018461237d565b9392505050565b600067ffffffffffffffff821115612d2d57612d2c6128e4565b5b612d36826123f6565b9050602081019050919050565b6000612d56612d5184612d12565b612944565b905082815260208101848484011115612d7257612d716128df565b5b612d7d8482856123c3565b509392505050565b600082601f830112612d9a57612d99612684565b5b8151612daa848260208601612d43565b91505092915050565b600060208284031215612dc957612dc86122e2565b5b600082015167ffffffffffffffff811115612de757612de66122e7565b5b612df384828501612d85565b91505092915050565b7f4d4f524520455448204e45454445440000000000000000000000000000000000600082015250565b6000612e32600f836123b2565b9150612e3d82612dfc565b602082019050919050565b60006020820190508181036000830152612e6181612e25565b9050919050565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b6000612ec46031836123b2565b9150612ecf82612e68565b604082019050919050565b60006020820190508181036000830152612ef381612eb7565b9050919050565b7f416c726561647920636c61696d65640000000000000000000000000000000000600082015250565b6000612f30600f836123b2565b9150612f3b82612efa565b602082019050919050565b60006020820190508181036000830152612f5f81612f23565b9050919050565b60008160601b9050919050565b6000612f7e82612f66565b9050919050565b6000612f9082612f73565b9050919050565b612fa8612fa3826124e5565b612f85565b82525050565b6000612fba8284612f97565b60148201915081905092915050565b7f496e76616c69642050726f6f6600000000000000000000000000000000000000600082015250565b6000612fff600d836123b2565b915061300a82612fc9565b602082019050919050565b6000602082019050818103600083015261302e81612ff2565b9050919050565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b60006130916029836123b2565b915061309c82613035565b604082019050919050565b600060208201905081810360008301526130c081613084565b9050919050565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b6000613123602a836123b2565b915061312e826130c7565b604082019050919050565b6000602082019050818103600083015261315281613116565b9050919050565b6000819050919050565b61317461316f82612462565b613159565b82525050565b60006131868285613163565b6020820191506131968284612f97565b6014820191508190509392505050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b60006131dc6019836123b2565b91506131e7826131a6565b602082019050919050565b6000602082019050818103600083015261320b816131cf565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b600061326e602f836123b2565b915061327982613212565b604082019050919050565b6000602082019050818103600083015261329d81613261565b9050919050565b600081905092915050565b7f7b226e616d65223a220000000000000000000000000000000000000000000000600082015250565b60006132e56009836132a4565b91506132f0826132af565b600982019050919050565b6000613306826123a7565b61331081856132a4565b93506133208185602086016123c3565b80840191505092915050565b7f222c20226465736372697074696f6e223a220000000000000000000000000000600082015250565b60006133626012836132a4565b915061336d8261332c565b601282019050919050565b7f222c2022696d616765223a202200000000000000000000000000000000000000600082015250565b60006133ae600d836132a4565b91506133b982613378565b600d82019050919050565b7f646174613a696d6167652f7376672b786d6c3b6261736536342c000000000000600082015250565b60006133fa601a836132a4565b9150613405826133c4565b601a82019050919050565b7f222c000000000000000000000000000000000000000000000000000000000000600082015250565b60006134466002836132a4565b915061345182613410565b600282019050919050565b7f7d00000000000000000000000000000000000000000000000000000000000000600082015250565b60006134926001836132a4565b915061349d8261345c565b600182019050919050565b60006134b3826132d8565b91506134bf82876132fb565b91506134ca82613355565b91506134d682866132fb565b91506134e1826133a1565b91506134ec826133ed565b91506134f882856132fb565b915061350382613439565b915061350f82846132fb565b915061351a82613485565b915081905095945050505050565b7f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c000000600082015250565b600061355e601d836132a4565b915061356982613528565b601d82019050919050565b600061357f82613551565b915061358b82846132fb565b915081905092915050565b600081905092915050565b50565b60006135b1600083613596565b91506135bc826135a1565b600082019050919050565b60006135d2826135a4565b9150819050919050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b60006136126020836123b2565b915061361d826135dc565b602082019050919050565b6000602082019050818103600083015261364181613605565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b600061367e601c836123b2565b915061368982613648565b602082019050919050565b600060208201905081810360008301526136ad81613671565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006136ee82612462565b91506136f983612462565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561372e5761372d6136b4565b5b828201905092915050565b7f4e4f545f53544152544544000000000000000000000000000000000000000000600082015250565b600061376f600b836123b2565b915061377a82613739565b602082019050919050565b6000602082019050818103600083015261379e81613762565b9050919050565b7f454e444544000000000000000000000000000000000000000000000000000000600082015250565b60006137db6005836123b2565b91506137e6826137a5565b602082019050919050565b6000602082019050818103600083015261380a816137ce565b9050919050565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b600061386d602c836123b2565b915061387882613811565b604082019050919050565b6000602082019050818103600083015261389c81613860565b9050919050565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b60006138ff6029836123b2565b915061390a826138a3565b604082019050919050565b6000602082019050818103600083015261392e816138f2565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006139916024836123b2565b915061399c82613935565b604082019050919050565b600060208201905081810360008301526139c081613984565b9050919050565b60006139d282612462565b91506139dd83612462565b9250828210156139f0576139ef6136b4565b5b828203905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613a3582612462565b9150613a4083612462565b925082613a5057613a4f6139fb565b5b828204905092915050565b6000613a6682612462565b9150613a7183612462565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613aaa57613aa96136b4565b5b828202905092915050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b6000613b116032836123b2565b9150613b1c82613ab5565b604082019050919050565b60006020820190508181036000830152613b4081613b04565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000819050919050565b613b91613b8c82612785565b613b76565b82525050565b6000613ba38285613b80565b602082019150613bb38284613b80565b6020820191508190509392505050565b6000613bce82612462565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613c0157613c006136b4565b5b600182019050919050565b600081519050919050565b600082825260208201905092915050565b6000613c3382613c0c565b613c3d8185613c17565b9350613c4d8185602086016123c3565b613c56816123f6565b840191505092915050565b6000608082019050613c7660008301876124f7565b613c8360208301866124f7565b613c90604083018561258d565b8181036060830152613ca28184613c28565b905095945050505050565b600081519050613cbc81612318565b92915050565b600060208284031215613cd857613cd76122e2565b5b6000613ce684828501613cad565b9150509291505056fe4142434445464748494a4b4c4d4e4f505152535455565758595a6162636465666768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2f43617073756c657320636f6e7461696e696e672076697375616c697a6174696f6e73206f6620616c6c20746865206c69766573206c697665642062792073696d756c61746564206d696e647320696e20746865207363686f6f6c206f6620756e6c6561726e696e672ea264697066735822122054417cc2247f60e9181268cad863178b91a5d841e9b01302efa0e0e7f1b7e3d464736f6c634300080c0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000f4fa7e95d8f115208841e97794a007997645f7c700000000000000000000000000000000000000000000000000000000633aeae000000000000000000000000000000000000000000000000000000000635fd4e07cc8028ca29b9825ff9247ea9ae162aefe188b90b2f671ff19850eb54e9d45df000000000000000000000000000000000000000000000000000000000000001943617073756c6573206f6620416c6c204f7572204c69766573000000000000000000000000000000000000000000000000000000000000000000000000000005434f414f4c000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : name_ (string): Capsules of All Our Lives
Arg [1] : symbol_ (string): COAOL
Arg [2] : recipient_ (address): 0xF4fA7e95d8F115208841e97794a007997645f7C7
Arg [3] : startDate_ (uint256): 1664805600
Arg [4] : endDate_ (uint256): 1667224800
Arg [5] : root_ (bytes32): 0x7cc8028ca29b9825ff9247ea9ae162aefe188b90b2f671ff19850eb54e9d45df
-----Encoded View---------------
10 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [2] : 000000000000000000000000f4fa7e95d8f115208841e97794a007997645f7c7
Arg [3] : 00000000000000000000000000000000000000000000000000000000633aeae0
Arg [4] : 00000000000000000000000000000000000000000000000000000000635fd4e0
Arg [5] : 7cc8028ca29b9825ff9247ea9ae162aefe188b90b2f671ff19850eb54e9d45df
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000019
Arg [7] : 43617073756c6573206f6620416c6c204f7572204c6976657300000000000000
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [9] : 434f414f4c000000000000000000000000000000000000000000000000000000
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.